12345678910111213141516171819202122232425262728293031323334353637383940 |
- <UserControl
- 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:BellwetherBackend.SubPage"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d"
- x:Class="BellwetherBackend.SubPage.UcBasicSetting">
- <Grid Background="White">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="15" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="15" />
- </Grid.RowDefinitions>
- <StackPanel
- Grid.Row="1"
- Height="35"
- Orientation="Horizontal">
- <TextBlock
- VerticalAlignment="Center"
- Text="自動回首頁時間"
- FontSize="20" />
- <Rectangle Width="20" />
- <TextBox
- x:Name="uxBackHomeSecText"
- Width="100"
- FontSize="20"
- TextChanged="uxBackHomeSecText_TextChanged" />
- <Rectangle Width="20" />
- <TextBlock
- VerticalAlignment="Center"
- Text="秒"
- FontSize="20" />
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|