コード例 #1
0
        public static void SetCommonAccessibilityAttributes(this Gtk.Widget w, string name, Gtk.Widget label, string help)
        {
            var accessible = w.Accessible;

            accessible.SetCommonAttributes(name, null, help);

            if (label != null)
            {
                w.SetAccessibilityLabelRelationship(label);
            }
        }