UcBasicSetting.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <RowDefinition Height="Auto" />
  18. <RowDefinition Height="15" />
  19. </Grid.RowDefinitions>
  20. <StackPanel
  21. Grid.Row="1"
  22. Height="35"
  23. Orientation="Horizontal">
  24. <TextBlock VerticalAlignment="Center" Text="自動回首頁時間" />
  25. <Rectangle Width="20" />
  26. <TextBox
  27. x:Name="uxBackHomeSecText"
  28. Width="100"
  29. TextChanged="uxBackHomeSecText_TextChanged" />
  30. <Rectangle Width="20" />
  31. <TextBlock VerticalAlignment="Center" Text="秒" />
  32. </StackPanel>
  33. <StackPanel
  34. Grid.Row="3"
  35. Height="35"
  36. Orientation="Horizontal">
  37. <TextBlock VerticalAlignment="Center" Text="太陽能url" />
  38. <Rectangle Width="20" />
  39. <TextBox
  40. x:Name="uxSolarEnergyUrlText"
  41. Width="500"
  42. TextChanged="uxBackHomeSecText_TextChanged" />
  43. </StackPanel>
  44. </Grid>
  45. </Grid>
  46. </UserControl>