summaryrefslogtreecommitdiff
path: root/Noddybox.WindowsPhone.Silverlight/Themes
diff options
context:
space:
mode:
Diffstat (limited to 'Noddybox.WindowsPhone.Silverlight/Themes')
-rw-r--r--Noddybox.WindowsPhone.Silverlight/Themes/generic.xaml17
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