summaryrefslogtreecommitdiff
path: root/Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2012-06-24 22:37:32 +0000
committerIan C <ianc@noddybox.co.uk>2012-06-24 22:37:32 +0000
commitaba818f3b66751842f457169ff1cfa58fc43dd84 (patch)
tree77d5bf95366501651c6ca088eb7e1bf08fb1f79c /Noddybox.WindowsPhone.Silverlight/SaveDialog.xaml
parent5ba217a4a60685b49346e5446f46ec2cad0499ca (diff)
Development check in
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>