You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
384
+
}
385
+
386
+
public class IconTemplateSelector : DataTemplateSelector
387
+
{
388
+
public DataTemplate CheckedIcon { get; set; }
389
+
public DataTemplate UnCheckedIcon { get; set; }
390
+
391
+
public override DataTemplate SelectTemplate(object item, DependencyObject container)
392
+
{
393
+
if (item is bool isChecked)
394
+
{
395
+
return isChecked ? CheckedIcon : UnCheckedIcon;
396
+
}
397
+
return base.SelectTemplate(item, container);
398
+
}
373
399
}
374
-
}
375
400
376
401
{% endhighlight %}
377
402
378
403
{% endtabs %}
379
404
405
+

406
+
380
407
N> The [ButtonAdv](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.ButtonAdv.html) loads the icon in the following priority order.
Copy file name to clipboardExpand all lines: wpf/Circular-ProgressBar/Getting-Started.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
---
2
2
layout: post
3
-
title: Getting Started with WPF Circular ProgressBar control | Syncfusion
4
-
description: Learn here about getting started with Syncfusion WPF Circular ProgressBar (SfCircularProgressBar) control, its elements and more details.
5
-
platform: WPF
3
+
title: Getting Started with WPF Circular ProgressBar | Syncfusion®
4
+
description: Learn here about getting started with Syncfusion® WPF Circular ProgressBar (SfCircularProgressBar) control, its elements and more details.
5
+
platform: wpf
6
6
control: SfCircularProgressBar
7
7
documentation: ug
8
8
---
@@ -31,7 +31,7 @@ To add control manually in XAML, follow the given steps:
31
31
32
32
1. Add the following required assembly references to the project:
33
33
* Syncfusion.SfProgressBar.WPF
34
-
2. Import Syncfusion WPF schema **http://schemas.syncfusion.com/wpf** the in XAML page.
34
+
2. Import Syncfusion® WPF schema **http://schemas.syncfusion.com/wpf** the in XAML page.
35
35
3. Declare the SfCircularProgressBar control in the XAML page.
Copy file name to clipboardExpand all lines: wpf/Circular-ProgressBar/Overview.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
---
2
2
layout: post
3
-
title: About WPF Circular ProgressBar control | Syncfusion
4
-
description: Learn here all about introduction of Syncfusion WPF Circular ProgressBar (SfCircularProgressBar) control, its elements and more details.
5
-
platform: WPF
3
+
title: About WPF Circular ProgressBar control | Syncfusion®
4
+
description: Learn here all about introduction of Syncfusion® WPF Circular ProgressBar (SfCircularProgressBar) control, its elements and more details.
0 commit comments