京东慧眼
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
1.3 KiB

<hc:GlowWindow x:Class="齐越慧眼.MainWindow"
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:hc="https://handyorg.github.io/handycontrol"
xmlns:local="clr-namespace:齐越慧眼"
xmlns:uc="clr-namespace:齐越慧眼.UserControls"
mc:Ignorable="d"
Background="White"
WindowStartupLocation="CenterScreen"
ActiveGlowColor="{DynamicResource PrimaryColor}"
Height="450"
Width="800"
>
<Border Padding="0 10" Background="#EEEEEE">
<hc:TabControl IsAnimationEnabled="True" IsTabFillEnabled="False" TabItemWidth="150" Name="tab">
<hc:TabItem IsSelected="True" Header="品类词库">
<uc:CatControl></uc:CatControl>
</hc:TabItem>
<hc:TabItem Header="产品库">
<uc:ItemControl></uc:ItemControl>
</hc:TabItem>
<hc:TabItem Header="浏览器">
<uc:BrowerControl x:Name="brower"></uc:BrowerControl>
</hc:TabItem>
</hc:TabControl>
</Border>
</hc:GlowWindow>