This question is locked. New answers and comments are not allowed.
Hi support!
1) I would like to know if telerik has Splitter control?
2) I can apply telerik theme for to Windows Controls, but I saw that in Windows Control Splitter, telerik theme was not applied, why ?
Thanks!
MainPage.xaml:
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="466"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">
<Grid x:Name="LayoutRoot" Background="White">
<TextBox Height="23" HorizontalAlignment="Left" Margin="12,28,0,0" x:Name="textBox1" VerticalAlignment="Top" Width="120" />
<TextBox Height="23" HorizontalAlignment="Left" Margin="182,28,0,0" x:Name="textBox2" VerticalAlignment="Top" Width="120"/>
<controls:GridSplitter Background="#cbdcf3" HorizontalAlignment="Right" IsTabStop="False" Margin="0,12,87,8" x:Name="grsMainSplitter1" Width="29" />
<controls:GridSplitter Background="#cbdcf3" HorizontalAlignment="Right" Margin="0,10,30,10" x:Name="grsMainSplitter2" Width="26" IsTabStop="False" />
</Grid>
</UserControl>
MainPage.xaml.cs:
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
StyleManager.SetTheme(this.textBox1, new Office_BlackTheme());
StyleManager.SetTheme(this.textBox2, new Office_BlueTheme());
StyleManager.SetTheme(this.grsMainSplitter1, new Office_BlackTheme());
StyleManager.SetTheme(this.grsMainSplitter2, new Office_BlueTheme());
}
}
1) I would like to know if telerik has Splitter control?
2) I can apply telerik theme for to Windows Controls, but I saw that in Windows Control Splitter, telerik theme was not applied, why ?
Thanks!
MainPage.xaml:
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="466"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">
<Grid x:Name="LayoutRoot" Background="White">
<TextBox Height="23" HorizontalAlignment="Left" Margin="12,28,0,0" x:Name="textBox1" VerticalAlignment="Top" Width="120" />
<TextBox Height="23" HorizontalAlignment="Left" Margin="182,28,0,0" x:Name="textBox2" VerticalAlignment="Top" Width="120"/>
<controls:GridSplitter Background="#cbdcf3" HorizontalAlignment="Right" IsTabStop="False" Margin="0,12,87,8" x:Name="grsMainSplitter1" Width="29" />
<controls:GridSplitter Background="#cbdcf3" HorizontalAlignment="Right" Margin="0,10,30,10" x:Name="grsMainSplitter2" Width="26" IsTabStop="False" />
</Grid>
</UserControl>
MainPage.xaml.cs:
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
StyleManager.SetTheme(this.textBox1, new Office_BlackTheme());
StyleManager.SetTheme(this.textBox2, new Office_BlueTheme());
StyleManager.SetTheme(this.grsMainSplitter1, new Office_BlackTheme());
StyleManager.SetTheme(this.grsMainSplitter2, new Office_BlueTheme());
}
}