BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[C#] private void Gantt_Loaded(object sender, RoutedEventArgs e) { Gantt.GanttGrid.Model.ColumnWidths[1] = 200; |
[C#] private void Gantt_Loaded(object sender, RoutedEventArgs e) { Gantt.GanttGrid.AllowSort = true; |
public MainWindow()
{
InitializeComponent();
this.Gantt.TemplateApplied += Gantt_TemplateApplied;
}
private void Gantt_TemplateApplied(object sender, Syncfusion.Windows.Controls.Gantt.TemplateAppliedEventArgs args) {
if (this.Gantt.GanttGrid != null && !this.Gantt.GanttGrid.AllowSort)
{
this.Gantt.GanttGrid.AllowSort = true;
}
} |