VideoSelectUc.xaml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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:VideoImageBuilder.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="VideoImageBuilder.SubPage.VideoSelectUc">
  11. <StackPanel>
  12. <TextBlock
  13. Margin="22,12,0,12"
  14. HorizontalAlignment="Left"
  15. Text="Vertical ScreenSave Video"
  16. FontSize="24" />
  17. <StackPanel Margin="22,0,150,12" Orientation="Horizontal">
  18. <Button
  19. x:Name="uxVideoBtn1"
  20. Width="90"
  21. Height="35"
  22. HorizontalAlignment="Left"
  23. Click="uxBrowseButton_Click"
  24. Content="Browse"
  25. Foreground="Black"
  26. Style="{StaticResource ButtonRevealStyle}"
  27. Tag="Url" />
  28. <TextBox
  29. x:Name="uxUrlBrowseTextBox1"
  30. Width="270"
  31. Height="35"
  32. Margin="1,0,0,0"
  33. VerticalContentAlignment="Center"
  34. Text="{Binding VideoPath1, Mode=TwoWay}"
  35. IsReadOnly="True"
  36. Style="{StaticResource TextBoxRevealStyle}" />
  37. </StackPanel>
  38. <TextBlock
  39. Margin="22,12,0,12"
  40. HorizontalAlignment="Left"
  41. Text="Horizontal AD Video"
  42. FontSize="24" />
  43. <StackPanel Margin="22,0,150,12" Orientation="Horizontal">
  44. <Button
  45. x:Name="uxVideoBtn2"
  46. Width="90"
  47. Height="35"
  48. HorizontalAlignment="Left"
  49. Click="uxBrowseButton_Click"
  50. Content="Browse"
  51. Foreground="Black"
  52. Style="{StaticResource ButtonRevealStyle}"
  53. Tag="Url" />
  54. <TextBox
  55. x:Name="uxUrlBrowseTextBox2"
  56. Width="270"
  57. Height="35"
  58. Margin="1,0,0,0"
  59. VerticalContentAlignment="Center"
  60. Text="{Binding VideoPath2, Mode=TwoWay}"
  61. IsReadOnly="True"
  62. Style="{StaticResource TextBoxRevealStyle}" />
  63. </StackPanel>
  64. </StackPanel>
  65. </UserControl>