summaryrefslogtreecommitdiff
path: root/Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml')
-rw-r--r--Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml b/Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml
new file mode 100644
index 0000000..012d2d2
--- /dev/null
+++ b/Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml
@@ -0,0 +1,27 @@
+<UserControl x:Class="Noddybox.WindowsPhone.Silverlight.SaveDialog"
+ 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ mc:Ignorable="d"
+ FontFamily="{StaticResource PhoneFontFamilyNormal}"
+ FontSize="{StaticResource PhoneFontSizeNormal}"
+ Foreground="{StaticResource PhoneForegroundBrush}"
+ d:DesignHeight="480" d:DesignWidth="480">
+
+ <Grid x:Name="LayoutRoot">
+ <Grid.RowDefinitions>
+ <RowDefinition Height="*" />
+ <RowDefinition Height="auto" />
+ <RowDefinition Height="auto" />
+ </Grid.RowDefinitions>
+ <Grid.ColumnDefinitions>
+ <ColumnDefinition Width="1*" />
+ <ColumnDefinition Width="1*" />
+ </Grid.ColumnDefinitions>
+ <ListBox x:Name="fileList" Grid.Row="0" Grid.ColumnSpan="2"/>
+ <TextBox x:Name="fileName" Grid.Row="1" Grid.ColumnSpan="2"/>
+ <Button Grid.Row="2" Grid.Column="0" Content="Ok" />
+ <Button Grid.Row="2" Grid.Column="1" Content="Cancel" />
+ </Grid>
+</UserControl>