'宣言 Public Shared ReadOnly DisplayTemplateProperty As DependencyProperty
public static readonly DependencyProperty DisplayTemplateProperty
C# の場合:
VB.NET の場合:
この依存プロパティ識別子を TemplateField から派生するカスタム クラスの作成で使用できます。
public class CustomTemplateField : TemplateField { public new DataTemplate DisplayTemplate { get { return (DataTemplate)GetValue(TemplateField.DisplayTemplateProperty); } set { SetValue(TemplateField.DisplayTemplateProperty, value); } } }
Class CustomTemplateField Inherits TemplateField Private _DisplayTemplate As DataTemplate Public Overloads Property DisplayTemplate() As DataTemplate Get Return GetValue(TemplateField.DisplayTemplateProperty) End Get Set(ByVal value As DataTemplate) SetValue(TemplateField.DisplayTemplateProperty, value) End Set End Property End Class
この依存プロパティ識別子を TemplateField から派生するカスタム クラスの作成で使用できます。