タスク 3:ツールボックス ペインと PropertyGrid ペインの作成
このタスクでは、ツールボックス ペインと PropertyGrid ペインを作成し、再ホストされた Windows ワークフロー デザイナーに追加します。
参考までに、「ワークフロー デザイナーのホスト変更」のトピック シリーズ内の 3 つのタスクの完了後に MainWindow.xaml.cs ファイルに含まれているはずのコードをこのトピックの最後に示します。
ツールボックスを作成し、グリッドに追加するには
「タスク 2: ワークフロー デザイナーのホスティング」で説明されている手順に従って取得した HostingApplication プロジェクトを開きます。
ソリューション エクスプローラー ペインで、MainWindow.xaml ファイルを右クリックし、 [コードの表示] をクリックします。
ToolboxControl を作成する
GetToolboxControl
メソッドをMainWindow
クラスに追加し、新しい Toolbox カテゴリを Toolbox に追加し、Assign および Sequence アクティビティの種類をそのカテゴリに割り当てます。private ToolboxControl GetToolboxControl() { // Create the ToolBoxControl. var ctrl = new ToolboxControl(); // Create a category. var category = new ToolboxCategory("category1"); // Create Toolbox items. var tool1 = new ToolboxItemWrapper("System.Activities.Statements.Assign", typeof(Assign).Assembly.FullName, null, "Assign"); var tool2 = new ToolboxItemWrapper("System.Activities.Statements.Sequence", typeof(Sequence).Assembly.FullName, null, "Sequence"); // Add the Toolbox items to the category. category.Add(tool1); category.Add(tool2); // Add the category to the ToolBox control. ctrl.Categories.Add(category); return ctrl; }
グリッドの左の列に Toolbox を配置する
AddToolbox
プライベート メソッドをMainWindow
クラスに追加します。private void AddToolBox() { ToolboxControl tc = GetToolboxControl(); Grid.SetColumn(tc, 0); grid1.Children.Add(tc); }
次のコードのように、
MainWindow()
クラス コンストラクターにAddToolBox
メソッドへの呼び出しを追加します。public MainWindow() { InitializeComponent(); this.RegisterMetadata(); this.AddDesigner(); this.AddToolBox(); }
F5 キーを押して、ソリューションをビルドおよび実行します。 Assign および Sequence アクティビティを含む [ツールボックス] が表示されます。
PropertyGrid を作成するには
ソリューション エクスプローラー ペインで、MainWindow.xaml ファイルを右クリックし、 [コードの表示] をクリックします。
MainWindow
クラスにAddPropertyInspector
メソッドを追加して、グリッドの最も右側の列に PropertyGrid ペインを配置します。private void AddPropertyInspector() { Grid.SetColumn(wd.PropertyInspectorView, 2); grid1.Children.Add(wd.PropertyInspectorView); }
次のコードのように、
MainWindow()
クラス コンストラクターにAddPropertyInspector
メソッドへの呼び出しを追加します。public MainWindow() { InitializeComponent(); this.RegisterMetadata(); this.AddDesigner(); this.AddToolBox(); this.AddPropertyInspector(); }
F5 キーを押して、ソリューションをビルドおよび実行します。 Toolbox、ワークフロー デザイン キャンバス、および PropertyGrid の各ペインがすべて表示されます。また、Assign アクティビティまたは Sequence アクティビティをデザイン キャンバスにドラッグすると、選択されているアクティビティに応じてプロパティ グリッドが更新されます。
例
MainWindow.xaml.cs ファイルに次のコードが含まれているはずです。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
// dlls added.
using System.Activities;
using System.Activities.Core.Presentation;
using System.Activities.Presentation;
using System.Activities.Presentation.Metadata;
using System.Activities.Presentation.Toolbox;
using System.Activities.Statements;
using System.ComponentModel;
namespace HostingApplication
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private WorkflowDesigner wd;
public MainWindow()
{
InitializeComponent();
RegisterMetadata();
AddDesigner();
this.AddToolBox();
this.AddPropertyInspector();
}
private void AddDesigner()
{
// Create an instance of WorkflowDesigner class.
this.wd = new WorkflowDesigner();
// Place the designer canvas in the middle column of the grid.
Grid.SetColumn(this.wd.View, 1);
// Load a new Sequence as default.
this.wd.Load(new Sequence());
// Add the designer canvas to the grid.
grid1.Children.Add(this.wd.View);
}
private void RegisterMetadata()
{
var dm = new DesignerMetadata();
dm.Register();
}
private ToolboxControl GetToolboxControl()
{
// Create the ToolBoxControl.
var ctrl = new ToolboxControl();
// Create a category.
var category = new ToolboxCategory("category1");
// Create Toolbox items.
var tool1 =
new ToolboxItemWrapper("System.Activities.Statements.Assign",
typeof(Assign).Assembly.FullName, null, "Assign");
var tool2 = new ToolboxItemWrapper("System.Activities.Statements.Sequence",
typeof(Sequence).Assembly.FullName, null, "Sequence");
// Add the Toolbox items to the category.
category.Add(tool1);
category.Add(tool2);
// Add the category to the ToolBox control.
ctrl.Categories.Add(category);
return ctrl;
}
private void AddToolBox()
{
ToolboxControl tc = GetToolboxControl();
Grid.SetColumn(tc, 0);
grid1.Children.Add(tc);
}
private void AddPropertyInspector()
{
Grid.SetColumn(wd.PropertyInspectorView, 2);
grid1.Children.Add(wd.PropertyInspectorView);
}
}
}
関連項目
.NET