50 lines
2.3 KiB
XML
50 lines
2.3 KiB
XML
<controls:ChildWindow
|
|
x:Class="Disco.Silverlight.AttachmentUpload.FileWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
|
|
Title="Upload File">
|
|
|
|
<Grid x:Name="LayoutRoot" Width="540">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock x:Name="IntroductoryText" Grid.Row="0" Margin="0"
|
|
Text="Please provide details for the file."/>
|
|
|
|
<StackPanel x:Name="ContentStackPanel" Grid.Row="2" Margin="0,6,0,0">
|
|
|
|
<TextBlock x:Name="LabelText" TextWrapping="Wrap" Margin="0,0,0,2"
|
|
Text="Details"/>
|
|
<Grid Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0 0 10 0">Filename:</TextBlock>
|
|
<TextBlock Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0 0 10 0">Comments:</TextBlock>
|
|
<TextBlock x:Name="textBlockName" Grid.Row="0" Grid.Column="1" Margin="4" Text="{Binding Filename}" />
|
|
<TextBox x:Name="textBlockComments" Grid.Row="1" Grid.Column="1" Height="24" Margin="4" Text="{Binding Comments}" />
|
|
</Grid>
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="3" HorizontalAlignment="Right" Margin="0,10,0,0">
|
|
<Button x:Name="ButtonCancel" Click="ButtonCancel_Click" Padding="14 6" VerticalAlignment="Bottom"
|
|
Margin="0,0,10,0"
|
|
TabIndex="0" Content="CANCEL"/>
|
|
<Button x:Name="ButtonOK" Click="ButtonOK_Click" Padding="14 6" VerticalAlignment="Bottom"
|
|
TabIndex="0" Content="OK" />
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</controls:ChildWindow> |