一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

WPF中實(shí)現(xiàn)PropertyGrid的三種方式

 Jcstone 2012-02-14

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://files.cnblogs.com/zhuqil/WpfPropertyGrid_Demo.rar

作者:朱祁林
出處:http://zhuqil.cnblogs.com
本文版權(quán)歸作者和博客園共有,歡迎轉(zhuǎn)載,但未經(jīng)作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責(zé)任的權(quán)利。

 


    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    免费午夜福利不卡片在线 视频| 精品老司机视频在线观看| 欧美激情床戏一区二区三| 91精品视频免费播放| 成人国产激情在线视频| 搡老妇女老熟女一区二区| 国产一区二区精品高清免费| 台湾综合熟女一区二区| 亚洲视频偷拍福利来袭| 国产精品尹人香蕉综合网 | 中字幕一区二区三区久久蜜桃| 97人摸人人澡人人人超碰| 欧美成人久久久免费播放| 欧美精品亚洲精品一区| 亚洲av又爽又色又色| 国产原创中文av在线播放| 久一视频这里只有精品| 日本女优一色一伦一区二区三区| 欧美不卡一区二区在线视频| 午夜福利黄片免费观看| 国产一区二区三区香蕉av| 国产精品九九九一区二区| 久久精品久久久精品久久| 五月激情婷婷丁香六月网| 偷拍洗澡一区二区三区| 久久香蕉综合网精品视频| 国产欧美亚洲精品自拍| 日本高清加勒比免费在线| 午夜精品麻豆视频91| 亚洲另类欧美综合日韩精品| 欧美亚洲综合另类色妞| 精品国产亚洲区久久露脸| 久久福利视频在线观看| 国产一区二区在线免费| 东京热加勒比一区二区三区| 欧美高潮喷吹一区二区| 五月情婷婷综合激情综合狠狠 | 午夜精品黄片在线播放| 欧美日韩欧美国产另类| 少妇熟女精品一区二区三区| 国产精品超碰在线观看|