8,757
社区成员
发帖
与我相关
我的任务
分享
<UserControl x:Class="MyTest.UC_CloseMin"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="30" Width="75">
<Grid>
<Border CornerRadius="4,4,4,4" BorderThickness="1,1,1,1" BorderBrush="#FFFEFEFE">
<Grid>
<Label Name="lbl_Close" Style="{StaticResource CMLabel}" Margin="0,0,0,0" >
<Label.Background>
<ImageBrush ImageSource="/MyTest;component/Images/Close.png" />
</Label.Background>
</Label>
<Label Name="lbl_Min" Style="{StaticResource CMLabel}" Margin="0,0,40,0" >
<Label.Background>
<ImageBrush ImageSource="/MyTest;component/Images/Min.png" />
</Label.Background>
</Label>
</Grid>
</Border>
</Grid>
</UserControl>
<Window x:Class="MyTest.W_Register"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="W_Register" Height="300" Width="300"
xmlns:local="clr-namespace:MyTest">
<Window.Background>
<ImageBrush ImageSource="/MyTest;component/Images/MainRegister.png" />
</Window.Background>
<Grid>
<Grid.Background>
<ImageBrush ImageSource="/MyTest;component/Images/MainRegister.png" />
</Grid.Background>
<!--这里一直有个红色的波浪线-->
<local:UC_CloseMin></local:UC_CloseMin>
<Button Height="20" Width="40">OK</Button>
</Grid>
</Window>