|
@@ -863,6 +863,9 @@ public class DynamicGridGridUIComponent<T> : IDynamicGridUIComponent<T>, IDynami
|
|
|
newcol.AllowSorting = false;
|
|
|
newcol.FilterRowOptionsVisibility = Visibility.Collapsed;
|
|
|
newcol.ShowHeaderToolTip = column.ToolTip != null;
|
|
|
+
|
|
|
+ newcol.ShowToolTip = column.ToolTip != null;
|
|
|
+ newcol.ShowHeaderToolTip = column.ToolTip != null;
|
|
|
|
|
|
var style = new Style();
|
|
|
style.Setters.Add(new Setter(Control.BackgroundProperty, new SolidColorBrush(Colors.Gainsboro)));
|
|
@@ -936,8 +939,9 @@ public class DynamicGridGridUIComponent<T> : IDynamicGridUIComponent<T>, IDynami
|
|
|
newcol.AllowFiltering = false;
|
|
|
newcol.AllowSorting = false;
|
|
|
newcol.FilterRowOptionsVisibility = Visibility.Collapsed;
|
|
|
- newcol.ShowToolTip = false;
|
|
|
- newcol.ShowHeaderToolTip = false;
|
|
|
+
|
|
|
+ newcol.ShowToolTip = column.ToolTip != null;
|
|
|
+ newcol.ShowHeaderToolTip = column.ToolTip != null;
|
|
|
|
|
|
var style = new Style();
|
|
|
style.Setters.Add(new Setter(Control.BackgroundProperty, new SolidColorBrush(Colors.Gainsboro)));
|