| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <UserControl
- x:Class="SHJX.Service.Library.Views.SettingLibrary.SpeedControl"
- 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.Library.Views.SettingLibrary"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- d:DesignHeight="150"
- d:DesignWidth="130"
- mc:Ignorable="d">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
- <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
- <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/light.Steel.xaml" />
- <ResourceDictionary Source="pack://application:,,,/Panuon.UI.Silver;component/Control.xaml" />
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid>
- <GroupBox
- Name="gb_speed"
- Width="130"
- Height="150"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:GroupBoxHelper.CornerRadius="8"
- pu:GroupBoxHelper.IsSplitLineVisible="True"
- pu:GroupBoxHelper.ShadowColor="LightGray"
- FontSize="12">
- <UniformGrid Columns="1" Rows="4">
- <StackPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock
- Margin="5,0"
- VerticalAlignment="Center"
- Text="速 度:" />
- <TextBox
- x:Name="txt_speed"
- Width="70"
- Height="25"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:TextBoxHelper.CornerRadius="10"
- pu:TextBoxHelper.FocusedBorderBrush="#B5B5B5"
- pu:TextBoxHelper.FocusedShadowColor="#B5B5B5" />
- </StackPanel>
- <StackPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock
- Margin="5,0"
- VerticalAlignment="Center"
- Text="加速度:" />
- <TextBox
- x:Name="txt_acspeed"
- Width="70"
- Height="25"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:TextBoxHelper.CornerRadius="10"
- pu:TextBoxHelper.FocusedBorderBrush="#B5B5B5"
- pu:TextBoxHelper.FocusedShadowColor="#B5B5B5" />
- </StackPanel>
- <StackPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock
- Margin="5,0"
- VerticalAlignment="Center"
- Text="减速度:" />
- <TextBox
- x:Name="txt_despeed"
- Width="70"
- Height="25"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- pu:TextBoxHelper.CornerRadius="10"
- pu:TextBoxHelper.FocusedBorderBrush="#B5B5B5"
- pu:TextBoxHelper.FocusedShadowColor="#B5B5B5" />
- </StackPanel>
- <Button
- Name="btn_speedsetting"
- Width="50"
- Height="25"
- Margin="5,0"
- HorizontalAlignment="Right"
- VerticalAlignment="Center"
- pu:ButtonHelper.ButtonStyle="Hollow"
- pu:ButtonHelper.CornerRadius="10"
- pu:ButtonHelper.HoverBrush="#6452A4"
- BorderBrush="#6452A4"
- Content="更新"
- Cursor="Hand"
- FontFamily="{StaticResource FontAwesome}"
- Foreground="#FF3F3F3F">
- <Button.CommandParameter>
- <Binding ElementName="gb_speed" Path="Tag" />
- </Button.CommandParameter>
- </Button>
- </UniformGrid>
- </GroupBox>
- </Grid>
- </UserControl>
|