@@ -106,21 +106,21 @@ public partial class ListDetailsView
106
106
new PropertyMetadata ( null ) ) ;
107
107
108
108
/// <summary>
109
- /// Identifies the <see cref="ListPaneNoItemsContent "/> dependency property.
109
+ /// Identifies the <see cref="ListPaneEmptyContent "/> dependency property.
110
110
/// </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 ) ,
114
114
typeof ( object ) ,
115
115
typeof ( ListDetailsView ) ,
116
116
new PropertyMetadata ( null ) ) ;
117
117
118
118
/// <summary>
119
- /// Identifies the <see cref="ListPaneNoItemsContentTemplate "/> dependency property.
119
+ /// Identifies the <see cref="ListPaneEmptyContentTemplate "/> dependency property.
120
120
/// </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 ) ,
124
124
typeof ( DataTemplate ) ,
125
125
typeof ( ListDetailsView ) ,
126
126
new PropertyMetadata ( null ) ) ;
@@ -321,10 +321,10 @@ public DataTemplate ListHeaderTemplate
321
321
/// <returns>
322
322
/// The content of the list pane's header. The default is null.
323
323
/// </returns>
324
- public object ListPaneNoItemsContent
324
+ public object ListPaneEmptyContent
325
325
{
326
- get { return GetValue ( ListPaneNoItemsContentProperty ) ; }
327
- set { SetValue ( ListPaneNoItemsContentProperty , value ) ; }
326
+ get { return GetValue ( ListPaneEmptyContentProperty ) ; }
327
+ set { SetValue ( ListPaneEmptyContentProperty , value ) ; }
328
328
}
329
329
330
330
/// <summary>
@@ -333,10 +333,10 @@ public object ListPaneNoItemsContent
333
333
/// <returns>
334
334
/// The template that specifies the visualization of the list pane no items object. The default is null.
335
335
/// </returns>
336
- public DataTemplate ListPaneNoItemsContentTemplate
336
+ public DataTemplate ListPaneEmptyContentTemplate
337
337
{
338
- get { return ( DataTemplate ) GetValue ( ListPaneNoItemsContentTemplateProperty ) ; }
339
- set { SetValue ( ListPaneNoItemsContentTemplateProperty , value ) ; }
338
+ get { return ( DataTemplate ) GetValue ( ListPaneEmptyContentTemplateProperty ) ; }
339
+ set { SetValue ( ListPaneEmptyContentTemplateProperty , value ) ; }
340
340
}
341
341
342
342
/// <summary>
0 commit comments