2013年1月5日土曜日

コンテンツ(Window2)


ContentControlクラス    単一エレメントを保持することができるContentと呼ばれるプロパティが含まれている
                                (自分の子供として単一エレメントを保持する)
       クラス定義は、

                Module Name: PresentationFramework.dll

          System.Windows.Controls.ContentControl   ←  これ
            System.Windows.Controls.Control
              System.Windows.FrameworkElement
                System.Windows.UIElement
                  System.Windows.Media.Visual
                    System.Windows.DependencyObject
                      System.Windows.Threading.DispatcherObject
                        System.Object

         単一エレメントを保持する「Content」プロパティは

                >   [System.Windows.Controls.ContentControl]::System.Object get_Content()
                >   [System.Windows.Controls.ContentControl]::Void set_Content(System.Object)
                >   [System.Windows.Controls.ContentControl]::System.Object Content
                >   [System.Windows.Controls.ContentControl]::System.Windows.DependencyProperty ContentProperty

        「ContentControl」から派生するクラスの一覧は?

        IsPublic IsSerial Name                           BaseType
        -------- -------- ----                                   --------
        True     False    Window                          System.Windows.Controls.ContentControl
        True     False    Label                             System.Windows.Controls.ContentControl
        True     False    ScrollViewer                    System.Windows.Controls.ContentControl
        True     False    ButtonBase                     System.Windows.Controls.ContentControl
        True     False    ListBoxItem                     System.Windows.Controls.ContentControl
        True     False    HeaderedContentControl System.Windows.Controls.ContentControl
        True     False    Frame                            System.Windows.Controls.ContentControl
        True     False    GroupItem                       System.Windows.Controls.ContentControl
        True     False    StatusBarItem                 System.Windows.Controls.ContentControl
        True     False    ToolTip                           System.Windows.Controls.ContentControl
        True     False    UserControl                     System.Windows.Controls.ContentControl


Window.ShowDialog()について

    >   Bool ShowDialog()   Windowを表示する。Closeするまで処理は戻ってこない


実際に使ってみる

  1. PowershellだけでWPF表示(Powershell3.0でも2.0でも稼働)
  2. .Netframeworkは3.0以上が必要
  3. WPFの約束としてPowershellはSTAモードで動く必要あり
  4. 以下コードを
      ①Powershellコンソールにコピペして実行
      ②ISEで実行する時はすでにSTAモードなので適時修正して実行
        注意:ブラウザによってはコピペで行頭に余分な空白が出来てしまうことあり
               C:\temp> □'@   ← ここの行の行頭に空白あると動かない 

Window.ShowDialog()の動作確認
---------------------------------------------
if ($host.Version.Major -eq 3) {
    powershell.exe
} else {
    if ($host.Runspace.ApartmentState -eq "STA") {return}
    powershell.exe -version 2 -sta
}

$xaml_win = @'
<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ダイアログ調査" Height="180" Width="250">
    <Grid>
      <Button Name="myButton1" VerticalAlignment="Top">
         ダイアログ作成</Button>
   </Grid>
</Window>
'@  # <--ブラウザによっては、コピペ時に行頭に空白出来る。空白削除する必要あり

@'
<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Dialogウインドウ" Height="180" Width="250">
    <StackPanel>
      <TextBlock Padding="10">ボタン押下</TextBlock>
      <Button IsCancel="True" Name="MyButton2Cancel">Cancel</Button>
      <Button IsDefault="True" Name="MyButton2Ok">Ok</Button>
    </StackPanel>
</Window>
'@ > c:\temp\test.xaml  # <--ブラウザによっては、コピペ時に行頭に空白出来る。空白削除する必要あり

$code = @'
using System.IO;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Markup;

namespace DialogBoxes
{
   public class DialogCtrl
   {
      public void subscribe(Button b)
      {
        b.Click += Button_Click;
      }

      private Window xReaderLoad()
      {
        FileStream fs = new FileStream("/temp/test.xaml", FileMode.Open, FileAccess.Read);
        return (Window) XamlReader.Load(fs);
      }

      private void Button_Click( object sender, RoutedEventArgs e )
      {
         Window win = xReaderLoad();
         Button b = (Button)win.FindName("MyButton2Ok");
         b.Click += Button_Click1;
         win.ShowDialog();
      }

      private void Button_Click1( object sender, RoutedEventArgs e )
      {
         bool? DialogResult = true;
         System.Console.WriteLine("Dialog結果コード:" + DialogResult);
      }
   }
}
'@  # <--ブラウザによっては、コピペ時に行頭に空白出来る。空白削除する必要あり

if ($host.Version.Major -eq 3) {
    Add-Type $code -ReferencedAssemblies @("WindowsBase","PresentationCore","PresentationFramework","system.xaml")
} else {
    Add-Type $code -ReferencedAssemblies @("WindowsBase","PresentationCore","PresentationFramework")
}
$form = [System.Windows.Markup.XamlReader]::Parse($xaml_win)
$dlg = new-object DialogBoxes.DialogCtrl
$dlg.subscribe($form.FindName("myButton1"))
$form.showdialog()
exit


0 件のコメント:

コメントを投稿