Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Maupin <ermaup@microsoft.com>2019-09-09 19:09:31 +0300
committerEric Maupin <ermaup@microsoft.com>2019-09-09 20:49:15 +0300
commit7d056f6f706cfd3370f5b9fc87380aa9d615e18c (patch)
tree2037db382242978a4ce4db06da0b85c1d3a5ca4c
parent4d0a5a820df3ebb1814fe35ebcf1306b0706b849 (diff)
[Win] Collection button help text
-rw-r--r--Xamarin.PropertyEditing.Windows/Themes/Resources.xaml2
-rw-r--r--Xamarin.PropertyEditing/Properties/Resources.Designer.cs6
-rw-r--r--Xamarin.PropertyEditing/Properties/Resources.resx3
3 files changed, 10 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
index c96026b..8e38be2 100644
--- a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
+++ b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
@@ -1507,7 +1507,7 @@
</Grid.ColumnDefinitions>
<TextBlock Text="{x:Static prop:Resources.CollectionValue}" Grid.Column="0" />
- <Button Name="launch" AutomationProperties.Name="{Binding Name}" Content="{x:Static prop:Resources.Ellipsis}" MinWidth="20" Grid.Column="1" />
+ <Button Name="launch" AutomationProperties.Name="{Binding Name}" AutomationProperties.HelpText="{x:Static prop:Resources.CollectionEditHelpText}" Content="{x:Static prop:Resources.Ellipsis}" MinWidth="20" Grid.Column="1" />
</Grid>
</ControlTemplate>
</Setter.Value>
diff --git a/Xamarin.PropertyEditing/Properties/Resources.Designer.cs b/Xamarin.PropertyEditing/Properties/Resources.Designer.cs
index 3badde5..040a159 100644
--- a/Xamarin.PropertyEditing/Properties/Resources.Designer.cs
+++ b/Xamarin.PropertyEditing/Properties/Resources.Designer.cs
@@ -106,6 +106,12 @@ namespace Xamarin.PropertyEditing.Properties {
return ResourceManager.GetString("ColorSpace", resourceCulture);
}
}
+
+ public static string CollectionEditHelpText {
+ get {
+ return ResourceManager.GetString("CollectionEditHelpText", resourceCulture);
+ }
+ }
public static string CurrentColor {
get {
diff --git a/Xamarin.PropertyEditing/Properties/Resources.resx b/Xamarin.PropertyEditing/Properties/Resources.resx
index 87d5716..b13e841 100644
--- a/Xamarin.PropertyEditing/Properties/Resources.resx
+++ b/Xamarin.PropertyEditing/Properties/Resources.resx
@@ -797,4 +797,7 @@
<data name="ArrangeByValueSource" xml:space="preserve">
<value>Value Source</value>
</data>
+ <data name="CollectionEditHelpText" xml:space="preserve">
+ <value>Edit items in this collection</value>
+ </data>
</root> \ No newline at end of file