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.
37 lines
1.9 KiB
37 lines
1.9 KiB
<UserControl x:Class="Container.ChildWindows.UCAppButton"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
Height="120" Width="260">
|
|
<Canvas Name="AppMain">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="145*"></ColumnDefinition>
|
|
<ColumnDefinition Width="115*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="1" Width="100" Height="100" Background="White">
|
|
<Border.Clip>
|
|
<RectangleGeometry RadiusX="50" RadiusY="50" Rect="0,0,100,100"/>
|
|
</Border.Clip>
|
|
<Image x:Name="image" >
|
|
</Image>
|
|
</Border>
|
|
<TextBlock Grid.Column="0" FontSize="24" Width="120" x:Name="txtName" TextAlignment="Right" Foreground="White" FontFamily="HYQiHei" Text="导购" Margin="0 30 20 30"></TextBlock>
|
|
</Grid>
|
|
<!--<Canvas Height="78" Width="73">
|
|
<Canvas.Background>
|
|
<ImageBrush ImageSource="../image/UCBackground.png"/>
|
|
</Canvas.Background>
|
|
<Canvas Name="mask" Width="28" Height="25" Canvas.Left="24" ZIndex="2" Visibility="Visible" Canvas.Top="20">
|
|
<Canvas.Background>
|
|
<ImageBrush Stretch="Fill" x:Name="image"/>
|
|
</Canvas.Background>
|
|
</Canvas>
|
|
</Canvas>
|
|
<Canvas>
|
|
<TextBlock FontSize="10" Canvas.Left="8" Canvas.Top="48" Width="60" x:Name="txtName" TextAlignment="Center" Foreground="#969696" FontFamily="HYQiHei" ></TextBlock>
|
|
</Canvas>-->
|
|
</Canvas>
|
|
</UserControl>
|
|
|