How can I configure my xamTextEditor to have rounded borders?.
You would need to re-template the control and set a corner radius on the border within it. You can use our default xaml which is included in the DefaultStyles directory as a starting point for your custom template.
OK, this is my template
<ControlTemplate x:Key="XamTextEditorControlTemplate1" TargetType="{x:Type igEditors:XamTextEditor}"><Border CornerRadius="5" x:Name="MainBorder" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"><TextBlock x:Name="TextBlock" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Text="{TemplateBinding DisplayText}" TextAlignment="{TemplateBinding TextAlignmentResolved}" TextWrapping="{TemplateBinding TextWrapping}"/></Border><ControlTemplate.Triggers><Trigger Property="IsEmbedded" Value="False"><Setter Property="CornerRadius" TargetName="MainBorder" Value="5"/></Trigger></ControlTemplate.Triggers></ControlTemplate>
Now I want set this template for one of my xamdatagrid columns at runtime to see the editor of this column with rounded borders
how can I do it?