Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
143362 | Mar 15,2019 05:33 PM UTC | Mar 19,2019 11:01 AM UTC | WPF | 1 |
![]() |
Tags: SfDataGrid |
//Example to create DataTemplate in code behind
FrameworkElementFactory textblock = new FrameworkElementFactory(typeof(TextBlock));
textblock.SetValue(TextBlock.TextAlignmentProperty, TextAlignment.Center);
textblock.SetValue(TextBlock.TextProperty, "Some Text");
textblock.SetValue(TextBlock.TextWrappingProperty, TextWrapping.Wrap);
DataTemplate headerTemplate = new DataTemplate() { VisualTree = textblock };
//Example to create MutiBindig in code behind
MultiBinding multiBinding = new MultiBinding();
multiBinding.Converter = (BackgroundColorConverter)this.Resources["ConverterName"];
multiBinding.Bindings.Add(new Binding() { Path = new PropertyPath("") });
multiBinding.Bindings.Add(new Binding() { Path = new PropertyPath("NameHere") });
//Example to create Style in code behind
Style cellStyle = new Style(typeof(Syncfusion.UI.Xaml.Grid.GridCell));
Setter borderThickness = new Setter(GridCell.BorderThicknessProperty, new Thickness(0));
Setter background = new Setter(GridCell.BackgroundProperty, multiBinding);
cellStyle.Setters.Add(borderThickness);
cellStyle.Setters.Add(background);
//Add TextColumn to the DataGrid
this.datagrid.Columns.Add(new GridTextColumn() { MappingName = "NameHere", HeaderTemplate = headerTemplate, CellStyle = cellStyle }); |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.