diff --git a/wpf/Release-notes/v26.2.10.md b/wpf/Release-notes/v26.2.10.md new file mode 100644 index 000000000..8eed2bd72 --- /dev/null +++ b/wpf/Release-notes/v26.2.10.md @@ -0,0 +1,16 @@ +--- +title: Essential Studio for WPF Weekly Nuget Release Release Notes +description: Essential Studio for WPF Weekly Nuget Release Release Notes +platform: WPF +documentation: ug +--- + +# Essential Studio for WPF Release Notes + +{% include release-info.html date="August 20, 2024" version="v26.2.10" %} + +{% directory path: _includes/release-notes/v26.2.10 %} + +{% include {{file.url}} %} + +{% enddirectory %} \ No newline at end of file diff --git a/wpf/Release-notes/v26.2.11.md b/wpf/Release-notes/v26.2.11.md new file mode 100644 index 000000000..5b787fd1f --- /dev/null +++ b/wpf/Release-notes/v26.2.11.md @@ -0,0 +1,16 @@ +--- +title: Essential Studio for WPF Weekly Nuget Release Release Notes +description: Essential Studio for WPF Weekly Nuget Release Release Notes +platform: WPF +documentation: ug +--- + +# Essential Studio for WPF Release Notes + +{% include release-info.html date="August 27, 2024" version="v26.2.11" %} + +{% directory path: _includes/release-notes/v26.2.11 %} + +{% include {{file.url}} %} + +{% enddirectory %} \ No newline at end of file diff --git a/wpf/Release-notes/v26.2.12.md b/wpf/Release-notes/v26.2.12.md new file mode 100644 index 000000000..ddf4e58c2 --- /dev/null +++ b/wpf/Release-notes/v26.2.12.md @@ -0,0 +1,16 @@ +--- +title: Essential Studio for WPF Weekly Nuget Release Release Notes +description: Essential Studio for WPF Weekly Nuget Release Release Notes +platform: WPF +documentation: ug +--- + +# Essential Studio for WPF Release Notes + +{% include release-info.html date="September 03, 2024" version="v26.2.12" %} + +{% directory path: _includes/release-notes/v26.2.12 %} + +{% include {{file.url}} %} + +{% enddirectory %} \ No newline at end of file diff --git a/wpf/Release-notes/v26.2.13.md b/wpf/Release-notes/v26.2.13.md new file mode 100644 index 000000000..f3a2c6bae --- /dev/null +++ b/wpf/Release-notes/v26.2.13.md @@ -0,0 +1,16 @@ +--- +title: Essential Studio for WPF Weekly Nuget Release Release Notes +description: Essential Studio for WPF Weekly Nuget Release Release Notes +platform: WPF +documentation: ug +--- + +# Essential Studio for WPF Release Notes + +{% include release-info.html date="September 05, 2024" version="v26.2.13" %} + +{% directory path: _includes/release-notes/v26.2.13 %} + +{% include {{file.url}} %} + +{% enddirectory %} \ No newline at end of file diff --git a/wpf/Release-notes/v26.2.14.md b/wpf/Release-notes/v26.2.14.md new file mode 100644 index 000000000..01fa3bdf0 --- /dev/null +++ b/wpf/Release-notes/v26.2.14.md @@ -0,0 +1,16 @@ +--- +title: Essential Studio for WPF Weekly Nuget Release Release Notes +description: Essential Studio for WPF Weekly Nuget Release Release Notes +platform: WPF +documentation: ug +--- + +# Essential Studio for WPF Release Notes + +{% include release-info.html date="September 10, 2024" version="v26.2.14" %} + +{% directory path: _includes/release-notes/v26.2.14 %} + +{% include {{file.url}} %} + +{% enddirectory %} \ No newline at end of file diff --git a/wpf/Tile-View/Data-Binding-Support.md b/wpf/Tile-View/Data-Binding-Support.md index 4caefa051..42a5f9f2a 100644 --- a/wpf/Tile-View/Data-Binding-Support.md +++ b/wpf/Tile-View/Data-Binding-Support.md @@ -154,7 +154,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/syncfusion-wpf- ## Virtualization support -You can enable the UI virtualization support in `TileViewControl`, which allows the users to load large sets of data without affecting loading or scrolling performance by setting the [IsVirtualizing](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Shared.TileViewControl.html#Syncfusion_Windows_Shared_TileViewControl_IsVirtualizing) property value as `true`. This feature allows users to reduce the loading time of `TileView` items regardless of items count. The default value of `IsVirtualizing` property is `false`. +You can enable the UI virtualization support in `TileViewControl`, which allows the users to load large sets of data without affecting loading or scrolling performance by setting the [IsVirtualizing](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Shared.TileViewControl.html#Syncfusion_Windows_Shared_TileViewControl_IsVirtualizing) property value as `true`. This feature allows users to reduce the loading time of `TileView` items regardless of items count. The default value of `IsVirtualizing` property is `false`. When using virtualization, it is recommended to use `RowCount` and `ColumnCount` instead of `RowHeight` and `ColumnWidth`. The `RowHeight` and `ColumnWidth` properties are not compatible with virtualization, and the layout will be updated based on the values of `RowCount` and `ColumnCount`. {% tabs %} {% highlight XAML %}