123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <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:VideoImageBuilder.SubPage"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d"
- x:Class="VideoImageBuilder.SubPage.VideoSelectUc">
- <StackPanel>
- <TextBlock
- Margin="22,12,0,12"
- HorizontalAlignment="Left"
- Text="Vertical ScreenSave Video"
- FontSize="24" />
- <StackPanel Margin="22,0,150,12" Orientation="Horizontal">
- <Button
- x:Name="uxVideoBtn1"
- Width="90"
- Height="35"
- HorizontalAlignment="Left"
- Click="uxBrowseButton_Click"
- Content="Browse"
- Foreground="Black"
- Style="{StaticResource ButtonRevealStyle}"
- Tag="Url" />
- <TextBox
- x:Name="uxUrlBrowseTextBox1"
- Width="270"
- Height="35"
- Margin="1,0,0,0"
- VerticalContentAlignment="Center"
- Text="{Binding VideoPath1, Mode=TwoWay}"
- IsReadOnly="True"
- Style="{StaticResource TextBoxRevealStyle}" />
- </StackPanel>
- <TextBlock
- Margin="22,12,0,12"
- HorizontalAlignment="Left"
- Text="Horizontal AD Video"
- FontSize="24" />
- <StackPanel Margin="22,0,150,12" Orientation="Horizontal">
- <Button
- x:Name="uxVideoBtn2"
- Width="90"
- Height="35"
- HorizontalAlignment="Left"
- Click="uxBrowseButton_Click"
- Content="Browse"
- Foreground="Black"
- Style="{StaticResource ButtonRevealStyle}"
- Tag="Url" />
- <TextBox
- x:Name="uxUrlBrowseTextBox2"
- Width="270"
- Height="35"
- Margin="1,0,0,0"
- VerticalContentAlignment="Center"
- Text="{Binding VideoPath2, Mode=TwoWay}"
- IsReadOnly="True"
- Style="{StaticResource TextBoxRevealStyle}" />
- </StackPanel>
- </StackPanel>
- </UserControl>
|