UcBasicSetting.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <UserControl
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:local="clr-namespace:BellwetherBackend.SubPage"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. d:DesignHeight="450"
  8. d:DesignWidth="800"
  9. mc:Ignorable="d"
  10. x:Class="BellwetherBackend.SubPage.UcBasicSetting">
  11. <Grid Background="White">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="15" />
  15. <RowDefinition Height="Auto" />
  16. <RowDefinition Height="15" />
  17. </Grid.RowDefinitions>
  18. <StackPanel
  19. Grid.Row="1"
  20. Height="35"
  21. Orientation="Horizontal">
  22. <TextBlock
  23. VerticalAlignment="Center"
  24. Text="自動回首頁時間"
  25. FontSize="20" />
  26. <Rectangle Width="20" />
  27. <TextBox
  28. x:Name="uxBackHomeSecText"
  29. Width="100"
  30. FontSize="20"
  31. TextChanged="uxBackHomeSecText_TextChanged" />
  32. <Rectangle Width="20" />
  33. <TextBlock
  34. VerticalAlignment="Center"
  35. Text="秒"
  36. FontSize="20" />
  37. </StackPanel>
  38. </Grid>
  39. </Grid>
  40. </UserControl>