You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
3.2 KiB
Plaintext
62 lines
3.2 KiB
Plaintext
|
2 years ago
|
<UserControl x:Class="XGL.UControl.UCCar"
|
||
|
|
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"
|
||
|
|
xmlns:local="clr-namespace:XGL.UControl"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="130" d:DesignWidth="260" >
|
||
|
|
<UserControl.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ResourceDictionary Source="/XGL;component/CSS/SearchBtnClass.xaml"/>
|
||
|
|
<ResourceDictionary Source="/XGL;component/CSS/SearchTextClass.xaml"/>
|
||
|
|
<ResourceDictionary Source="/XGL;component/CSS/DataGridClass.xaml"/>
|
||
|
|
<ResourceDictionary Source="/XGL;component/CSS/NormalSmlBtnClass.xaml"/>
|
||
|
|
<ResourceDictionary Source="/XGL;component/CSS/Style.xaml"/>
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</UserControl.Resources>
|
||
|
|
<Grid Background="Transparent">
|
||
|
|
<Line X1="0" Y1="35.5" X2="40.5" Y2="35.5" Stroke="#fcb03b" StrokeThickness="8" SnapsToDevicePixels="True" Margin="0,8,0,-8" >
|
||
|
|
|
||
|
|
</Line>
|
||
|
|
<Line X1="30" Y1="35" X2="45" Y2="35" Stroke="#fcb03b" StrokeThickness="8" SnapsToDevicePixels="True" Margin="-115,-2,115,2" >
|
||
|
|
<Line.LayoutTransform>
|
||
|
|
<TransformGroup>
|
||
|
|
<ScaleTransform/>
|
||
|
|
<SkewTransform/>
|
||
|
|
<RotateTransform Angle="60"/>
|
||
|
|
<TranslateTransform/>
|
||
|
|
</TransformGroup>
|
||
|
|
</Line.LayoutTransform>
|
||
|
|
|
||
|
|
</Line>
|
||
|
|
<Line X1="219.5" Y1="35.5" X2="260" Y2="35.5" Stroke="#fcb03b" StrokeThickness="8" SnapsToDevicePixels="True" Margin="0,8,0,-8" >
|
||
|
|
|
||
|
|
</Line>
|
||
|
|
<Line X1="215" Y1="55" X2="223" Y2="41.5" Stroke="#fcb03b" StrokeThickness="8" SnapsToDevicePixels="True" >
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</Line>
|
||
|
|
|
||
|
|
<Image Height="50" VerticalAlignment="Top" Width="30" HorizontalAlignment="Center" Source="pack://siteoforigin:,,,/Resources/vgd.png" />
|
||
|
|
<Ellipse Width="20" Height="20" Fill="#fcb03b" Margin="55,110,185,0" ></Ellipse>
|
||
|
|
<Ellipse Width="20" Height="20" Fill="#fcb03b" Margin="185,110,55,0" ></Ellipse>
|
||
|
|
<TextBlock x:Name="btnCar" Text="" HorizontalAlignment="Left" VerticalAlignment="Top" Width="206" Height="60" FontSize="16" Margin="26,50,0,0" >
|
||
|
|
<Border BorderBrush="#fda03c" BorderThickness="2" CornerRadius="5" >
|
||
|
|
|
||
|
|
<DockPanel Name="btnSearchBg" Height="53" Width="203">
|
||
|
|
<DockPanel.Background >
|
||
|
|
<SolidColorBrush Color="YellowGreen" />
|
||
|
|
</DockPanel.Background>
|
||
|
|
<Border Margin="5" CornerRadius="5" Background="#f7828c">
|
||
|
|
<TextBlock x:Name="txtContent" Foreground="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Text=""></TextBlock>
|
||
|
|
</Border>
|
||
|
|
</DockPanel>
|
||
|
|
</Border>
|
||
|
|
</TextBlock>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|