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

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBret Johnson <bret.johnson@microsoft.com>2018-07-18 11:22:41 +0300
committerBret Johnson <bret.johnson@microsoft.com>2018-07-18 11:40:46 +0300
commit93ac74e50f1c9bf6e18f905b0d43051e3fe2a36e (patch)
treeb932f5b3122a4e9c685cde91b7e841d1dc45dc7b /Xwt.Gtk
parent1fb26f63768045d56ca3fe8667303643cddf845a (diff)
[a11y][Gtk} Added stub TextColor property for Gtk
Diffstat (limited to 'Xwt.Gtk')
-rw-r--r--Xwt.Gtk/Xwt.GtkBackend/ColorSelectorBackend.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Xwt.Gtk/Xwt.GtkBackend/ColorSelectorBackend.cs b/Xwt.Gtk/Xwt.GtkBackend/ColorSelectorBackend.cs
index c09b4d98..f633c74d 100644
--- a/Xwt.Gtk/Xwt.GtkBackend/ColorSelectorBackend.cs
+++ b/Xwt.Gtk/Xwt.GtkBackend/ColorSelectorBackend.cs
@@ -74,6 +74,15 @@ namespace Xwt.GtkBackend
ApplicationContext.InvokeUserCode (EventSink.OnColorChanged);
}
+ public Xwt.Drawing.Color TextColor {
+ get {
+ throw new NotImplementedException ("Gtk ColorSelector doesn't currently support the TextColor property");
+ }
+ set {
+ throw new NotImplementedException ("Gtk ColorSelector doesn't currently support the TextColor property");
+ }
+ }
+
public Xwt.Drawing.Color Color {
get {
var xwtColor = Widget.CurrentColor.ToXwtValue ();