public static bool GetIsFocusedHeader(DataGridColumnHeader obj)
 {
     if (obj == null)
     {
         throw new ArgumentNullException("obj");
     }
     return((bool)obj.GetValue(IsFocusedHeaderProperty));
 }
Exemple #2
0
 public static bool GetIsEnabled(DataGridColumnHeader header)
 {
     return((bool)header.GetValue(IsEnabledProperty));
 }
Exemple #3
0
 public static bool GetIsLastVisibleColumnHeader(DataGridColumnHeader columnHeader)
 {
     return((bool)columnHeader.GetValue(IsLastVisibleColumnHeaderProperty));
 }
Exemple #4
0
 public static Visibility GetComputedSeparatorVisibility(DataGridColumnHeader header)
 {
     return((Visibility)header.GetValue(ComputedSeparatorVisibilityProperty));
 }