diff options
author | Ian C <ianc@noddybox.co.uk> | 2012-06-27 22:49:23 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2012-06-27 22:49:23 +0000 |
commit | 2c39a1ef8c13bd8d0321f79b0ce2850d0a590b45 (patch) | |
tree | 72ba36255d4aabe03c3d063f501248cc4680c79c /Noddybox.WindowsPhone.Silverlight/Themes | |
parent | 1c036de8e527038f00b7ff07fc1ef4b80f23a846 (diff) |
Done Save, Load and Delete dialogs.
Diffstat (limited to 'Noddybox.WindowsPhone.Silverlight/Themes')
-rw-r--r-- | Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml b/Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml index 74c1d9a..5ac753a 100644 --- a/Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml +++ b/Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml @@ -19,10 +19,23 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
- xmlns:local="clr-namespace:Silverlight">
+ xmlns:local="clr-namespace:Noddybox.WindowsPhone.Silverlight">
<Style TargetType="local:SaveDialog">
<Setter Property="StartPath" Value="/" />
<Setter Property="OkButtonText" Value="OK" />
- <Setter Property="CancelButtonText" Value="Cancel" />
+ <Setter Property="TitleText" Value="Select File To Save" />
+ <Setter Property="FileMask" Value="*" />
+ </Style>
+ <Style TargetType="local:LoadDialog">
+ <Setter Property="StartPath" Value="/" />
+ <Setter Property="OkButtonText" Value="OK" />
+ <Setter Property="TitleText" Value="Select File To Load" />
+ <Setter Property="FileMask" Value="*" />
+ </Style>
+ <Style TargetType="local:DeleteDialog">
+ <Setter Property="StartPath" Value="/" />
+ <Setter Property="DeleteButtonText" Value="Delete" />
+ <Setter Property="TitleText" Value="Select Files To Delete" />
+ <Setter Property="FileMask" Value="*" />
</Style>
</ResourceDictionary>
\ No newline at end of file |