WPF中實(shí)現(xiàn)PropertyGrid的三種方式
由于WPF中沒有提供PropertyGrid控件,有些業(yè)務(wù)需要此類的控件。這篇文章介紹在WPF中實(shí)現(xiàn)PropertyGrid的三種方式,三種方式都是俺平時(shí)使用時(shí)總結(jié)出來的。
第一種方式:使用WindowsForm的PropertyGrid控件。
用過WPF的童鞋都曉得,可以通過WindowsFormsHost將WindowsForm的控件宿主到WPF中使用。很簡單,分為簡單的3步。
第一步:引用dll:在WPF應(yīng)用程序中引入System.Windows.Forms.dll。
第二步:引用命名空間:在窗體的.cs代碼中引用此命名空間:using System.Windows.Forms;在XAML中引用此命名空間代碼如下:
xmlns:my="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
第三步:通過WindowsFormsHost使用PropertyGrid控件。
<WindowsFormsHost Height="287" HorizontalAlignment="Left" Margin="18,12,0,0" Name="windowsFormsHost1" VerticalAlignment="Top" Width="200">
<my:PropertyGrid x:Name="PropertyGrid1"></my:PropertyGrid>
</WindowsFormsHost>
看下效果Button的屬性:
將Button的背景色設(shè)置為紅色:
第二種方式:自定義WPF控件。這里以codeplex上的一個(gè)開源控件為例。如果你想知道實(shí)現(xiàn)的細(xì)節(jié),可以到http://wpg./上下載代碼學(xué)習(xí)。
使用方式很簡單。由于它是WPF控件,所以不需要使用WindowsFormsHost。
<Window x:Class="WPGDemoApp.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wpg="clr-namespace:WPG;assembly=WPG"
Title="Window1" Height="300" Width="300">
<DockPanel VerticalAlignment="Stretch" >
<Button DockPanel.Dock="Top" x:Name="btn">button for test</Button>
<wpg:PropertyGrid DockPanel.Dock="Top" Instance="{Binding ElementName=btn}" VerticalAlignment="Stretch" IsEnabled="True"></wpg:PropertyGrid>
</DockPanel>
</Window>
把Button的背景色設(shè)置為紅色:
第三種方式:使用WF4.0設(shè)計(jì)器里面的屬性框控件。WF4.0的流程設(shè)計(jì)器有一個(gè)這樣的PropertyGrid控件。我們利用它來實(shí)現(xiàn)自己的PropertyGrid控件。這也是本文重點(diǎn)介紹的方式。參考:Native WPF 4 PropertyGrid。分五個(gè)步驟去實(shí)現(xiàn)。
1、自定義一個(gè)用戶控件,這個(gè)控件繼承Grid類。grid將包含真正的界面元素。
2、用Workflow Foundation的
WorkflowDesigner一個(gè)對象作為這個(gè)控件的私有成員。
3、對于需要設(shè)計(jì)的對象,在grid中添加一個(gè)PropertyInspectorView對象的子元素。對外它是一個(gè)Grid,其實(shí)它的類型是
ProperyInspector。
4、通過反射獲取和使用
PropertyInspector的一些方法。
5、實(shí)現(xiàn)一個(gè)
SelectedObject屬性,標(biāo)準(zhǔn)的
PropertyGrid都有它。用來處理
PropertyInspector選擇對象的改變。
代碼如下:
using System.Activities.Presentation;
using System.Activities.Presentation.Model;
using System.Activities.Presentation.View;
using System.Reflection;
using System.Windows.Controls;
namespace System.Windows.Control
{
/// <summary>
/// WPF Native PropertyGrid class, taken from Workflow Foundation Designer
/// </summary>
public class WpfPropertyGrid : Grid
{
#region Private fields
private WorkflowDesigner Designer;
private MethodInfo RefreshMethod;
private MethodInfo OnSelectionChangedMethod;
private TextBlock SelectionTypeLabel;
private object TheSelectedObject = null;
#endregion
#region Public properties
/// <summary>
/// Get or sets the selected object. Can be null.
/// </summary>
public object SelectedObject
{
get
{
return this.TheSelectedObject;
}
set
{
this.TheSelectedObject = value;
if (value != null)
{
var context = new EditingContext();
var mtm = new ModelTreeManager(context);
mtm.Load(value);
var selection = Selection.Select(context, mtm.Root);
OnSelectionChangedMethod.Invoke(Designer.PropertyInspectorView, new object[] { selection });
this.SelectionTypeLabel.Text = value.GetType().Name;
}
else
{
OnSelectionChangedMethod.Invoke(Designer.PropertyInspectorView, new object[] { null });
this.SelectionTypeLabel.Text = string.Empty;
}
}
}
/// <summary>
/// XAML information with PropertyGrid's font and color information
/// </summary>
/// <seealso>Documentation for WorkflowDesigner.PropertyInspectorFontAndColorData</seealso>
public string FontAndColorData
{
set
{
Designer.PropertyInspectorFontAndColorData = value;
}
}
#endregion
/// <summary>
/// Default constructor, creates a hidden designer view and a property inspector
/// </summary>
public WpfPropertyGrid()
{
this.Designer = new WorkflowDesigner();
var inspector = Designer.PropertyInspectorView;
Type inspectorType = inspector.GetType();
inspector.Visibility = Visibility.Visible;
this.Children.Add(inspector);
var methods = inspectorType.GetMethods(Reflection.BindingFlags.Public | Reflection.BindingFlags.NonPublic | Reflection.BindingFlags.Instance |
Reflection.BindingFlags.DeclaredOnly);
this.RefreshMethod = inspectorType.GetMethod("RefreshPropertyList",
Reflection.BindingFlags.NonPublic | Reflection.BindingFlags.Instance | Reflection.BindingFlags.DeclaredOnly);
this.OnSelectionChangedMethod = inspectorType.GetMethod("OnSelectionChanged",
Reflection.BindingFlags.Public | Reflection.BindingFlags.Instance | Reflection.BindingFlags.DeclaredOnly);
this.SelectionTypeLabel = inspectorType.GetMethod("get_SelectionTypeLabel",
Reflection.BindingFlags.Public | Reflection.BindingFlags.NonPublic | Reflection.BindingFlags.Instance |
Reflection.BindingFlags.DeclaredOnly).Invoke(inspector, new object[0]) as TextBlock;
this.SelectionTypeLabel.Text = string.Empty;
}
/// <summary>
/// Updates the PropertyGrid's properties
/// </summary>
public void RefreshPropertyList()
{
RefreshMethod.Invoke(Designer.PropertyInspectorView, new object[] { false });
}
}
}
效果:
總結(jié):
本文提供了三種方式去在WPF中實(shí)現(xiàn)PropertyGrid。
作者:朱祁林
出處:http://zhuqil.cnblogs.com
本文版權(quán)歸作者和博客園共有,歡迎轉(zhuǎn)載,但未經(jīng)作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責(zé)任的權(quán)利。