| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <UserControl
- x:Class="SHJX.Service.Librarys.MainLibrarys.TagElement"
- 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:local="clr-namespace:SHJX.Service.Librarys.MainLibrarys"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- Margin="8,10"
- Cursor="Hand"
- mc:Ignorable="d">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="pack://application:,,,/Panuon.UI.Silver;component/Control.xaml" />
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Viewbox>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="4*" />
- <RowDefinition Height="2*" />
- </Grid.RowDefinitions>
- <Button
- x:Name="btn_click"
- Grid.Row="0"
- Width="80"
- Height="80"
- Padding="0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:ButtonHelper.ButtonStyle="Hollow"
- pu:ButtonHelper.ClickStyle="Sink"
- pu:ButtonHelper.CornerRadius="50"
- pu:ButtonHelper.HoverBrush="#66CCCC"
- Background="Transparent"
- BorderBrush="Transparent"
- Cursor="Hand">
- <Image
- x:Name="img_display"
- Width="60"
- Height="60" />
- </Button>
- <TextBlock
- x:Name="tb_tag_detail"
- Grid.Row="1"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="UltraBold"
- Foreground="White" />
- </Grid>
- </Viewbox>
- </UserControl>
|