Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the style programmatically

Tags:

wpf

I have the following style but i need to make it programmatically:

<xcdg:DataGridControl MinHeight="300"                        Name="listViewUnallocated"                        ItemsSource="{Binding Source={StaticResource                                          cvs_unallocatedTerminals}}"                       AllowDrop="True"                        Drop="Grid_Drop"                        MouseMove="Grid_MouseMove"                        KeyUp="listViewUnallocated_KeyUp"                       MouseDoubleClick="gridUnallocated_MouseDoubleClick"                       ReadOnly="True"                       DockPanel.Dock="Top">     <xcdg:DataGridControl.Resources>         <Style TargetType="{x:Type xcdg:DataRow}" x:Name="selectedStyleTrigger">             <Style.Triggers>                 <DataTrigger Binding="{Binding TerminalId}" Value="72948028">                     <Setter Property="Background" Value="Red" />                 </DataTrigger>             </Style.Triggers>         </Style>     </xcdg:DataGridControl.Resources> 
like image 585
user384080 Avatar asked Jul 07 '10 22:07

user384080


People also ask

How do I set TextInputLayout style programmatically?

Method 1 - Create TextInputLayout programmatically with wrapping Context with android. view. ContextThemeWrapper and use. TextInputLayout layout = new TextInputLayout(new ContextThemeWrapper(getContext(), R.


1 Answers

In the code-behind file of the control, try:

this.Style = Resources["ResourceName"] as Style; 
like image 133
Grant Thomas Avatar answered Sep 22 '22 20:09

Grant Thomas