<syncfusion:ChromelessWindow x:Class="VinylColl.View.Window1" 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:local="clr-namespace:VinylColl.View" xmlns:syncfusion="http://schemas.syncfusion.com/wpf" xmlns:syncfusionskin ="clr-namespace:Syncfusion.SfSkinManager;assembly=Syncfusion.SfSkinManager.WPF" syncfusionskin:SfSkinManager.VisualStyle="Blend" mc:Ignorable="d" Title="Window1" Height="300" Width="300"> <Grid> <syncfusion:TabControlExt x:Name="tabControlExt" HorizontalAlignment="Left" Margin="27,50,0,0" VerticalAlignment="Top" syncfusionskin:SfSkinManager.VisualStyle="Blend"> <TabItem Header="TabItem"> <Grid Background="#FFE5E5E5"/> </TabItem> <syncfusion:TabItemExt Header="New TabItemExt" IsNewTab="False" MinWidth="150" MinHeight="20"/> </syncfusion:TabControlExt> </Grid> </syncfusion:ChromelessWindow> |
<syncfusion:ChromelessWindow x:Class="VinylColl.View.Window1" 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:local="clr-namespace:VinylColl.View" xmlns:syncfusion="http://schemas.syncfusion.com/wpf" xmlns:syncfusionskin ="clr-namespace:Syncfusion.SfSkinManager;assembly=Syncfusion.SfSkinManager.WPF" syncfusionskin:SfSkinManager.VisualStyle="Blend" mc:Ignorable="d" Title="Window1" Height="300" Width="300"> <Window.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Window.Resources> <Grid> <syncfusion:TabControlExt x:Name="tabControlExt" HorizontalAlignment="Left" Margin="27,50,0,0" VerticalAlignment="Top" syncfusionskin:SfSkinManager.VisualStyle="Blend"> <TabItem Header="TabItem"> <Grid Background="#FFE5E5E5"/> </TabItem> <syncfusion:TabItemExt Header="New TabItemExt" IsNewTab="False" MinWidth="150" MinHeight="20"/> </syncfusion:TabControlExt> </Grid> </syncfusion:ChromelessWindow> |
public MainWindow()
{
SfSkinManager.ApplyStylesOnApplication = true;
InitializeComponent();
} |