@@ -106,21 +106,21 @@ public partial class ListDetailsView
106106 new PropertyMetadata ( null ) ) ;
107107
108108 /// <summary>
109- /// Identifies the <see cref="ListPaneNoItemsContent "/> dependency property.
109+ /// Identifies the <see cref="ListPaneEmptyContent "/> dependency property.
110110 /// </summary>
111- /// <returns>The identifier for the <see cref="ListPaneNoItemsContent "/> dependency property.</returns>
112- public static readonly DependencyProperty ListPaneNoItemsContentProperty = DependencyProperty . Register (
113- nameof ( ListPaneNoItemsContent ) ,
111+ /// <returns>The identifier for the <see cref="ListPaneEmptyContent "/> dependency property.</returns>
112+ public static readonly DependencyProperty ListPaneEmptyContentProperty = DependencyProperty . Register (
113+ nameof ( ListPaneEmptyContent ) ,
114114 typeof ( object ) ,
115115 typeof ( ListDetailsView ) ,
116116 new PropertyMetadata ( null ) ) ;
117117
118118 /// <summary>
119- /// Identifies the <see cref="ListPaneNoItemsContentTemplate "/> dependency property.
119+ /// Identifies the <see cref="ListPaneEmptyContentTemplate "/> dependency property.
120120 /// </summary>
121- /// <returns>The identifier for the <see cref="ListPaneNoItemsContentTemplate "/> dependency property.</returns>
122- public static readonly DependencyProperty ListPaneNoItemsContentTemplateProperty = DependencyProperty . Register (
123- nameof ( ListPaneNoItemsContentTemplate ) ,
121+ /// <returns>The identifier for the <see cref="ListPaneEmptyContentTemplate "/> dependency property.</returns>
122+ public static readonly DependencyProperty ListPaneEmptyContentTemplateProperty = DependencyProperty . Register (
123+ nameof ( ListPaneEmptyContentTemplate ) ,
124124 typeof ( DataTemplate ) ,
125125 typeof ( ListDetailsView ) ,
126126 new PropertyMetadata ( null ) ) ;
@@ -321,10 +321,10 @@ public DataTemplate ListHeaderTemplate
321321 /// <returns>
322322 /// The content of the list pane's header. The default is null.
323323 /// </returns>
324- public object ListPaneNoItemsContent
324+ public object ListPaneEmptyContent
325325 {
326- get { return GetValue ( ListPaneNoItemsContentProperty ) ; }
327- set { SetValue ( ListPaneNoItemsContentProperty , value ) ; }
326+ get { return GetValue ( ListPaneEmptyContentProperty ) ; }
327+ set { SetValue ( ListPaneEmptyContentProperty , value ) ; }
328328 }
329329
330330 /// <summary>
@@ -333,10 +333,10 @@ public object ListPaneNoItemsContent
333333 /// <returns>
334334 /// The template that specifies the visualization of the list pane no items object. The default is null.
335335 /// </returns>
336- public DataTemplate ListPaneNoItemsContentTemplate
336+ public DataTemplate ListPaneEmptyContentTemplate
337337 {
338- get { return ( DataTemplate ) GetValue ( ListPaneNoItemsContentTemplateProperty ) ; }
339- set { SetValue ( ListPaneNoItemsContentTemplateProperty , value ) ; }
338+ get { return ( DataTemplate ) GetValue ( ListPaneEmptyContentTemplateProperty ) ; }
339+ set { SetValue ( ListPaneEmptyContentTemplateProperty , value ) ; }
340340 }
341341
342342 /// <summary>
0 commit comments