We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6f859c commit b8c944dCopy full SHA for b8c944d
Samples/Pin-UnPin/Model/TabItem.cs
@@ -1,4 +1,4 @@
1
-using Syncfusion.Windows.Shared;
+using Syncfusion.Windows.Shared;
2
using System.Windows;
3
using System.Windows.Controls;
4
@@ -12,6 +12,7 @@ public class TabItem : NotificationObject
12
private bool allowPin;
13
private bool showPin;
14
private Visibility closeButtonState;
15
+ private bool isPinned;
16
17
public string Header
18
{
@@ -68,6 +69,19 @@ public bool ShowPin
68
69
showPin = value;
70
this.RaisePropertyChanged("ShowPin");
71
}
72
+ }
73
+
74
+ public bool IsPinned
75
+ {
76
+ get
77
78
+ return isPinned;
79
80
+ set
81
82
+ isPinned = value;
83
+ this.RaisePropertyChanged("IsPinned");
84
85
86
87
public Visibility CloseButtonState
0 commit comments