From afd359b383a09f720d512dbf1f3bb6707dc4b83e Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 10 Jul 2018 11:38:50 +0300 Subject: Implemented job type picker dialog. Implemented "native" touch listbox. --- .../CustomAttributes/XamlVectorAttribute.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Software/Visual_Studio/Tango.Core/CustomAttributes/XamlVectorAttribute.cs (limited to 'Software/Visual_Studio/Tango.Core/CustomAttributes') diff --git a/Software/Visual_Studio/Tango.Core/CustomAttributes/XamlVectorAttribute.cs b/Software/Visual_Studio/Tango.Core/CustomAttributes/XamlVectorAttribute.cs new file mode 100644 index 000000000..fc92eb07c --- /dev/null +++ b/Software/Visual_Studio/Tango.Core/CustomAttributes/XamlVectorAttribute.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Core.CustomAttributes +{ + /// + /// Represents an association of a xaml markup vector to with an enum field. + /// + /// + [AttributeUsage(AttributeTargets.Field)] + public class XamlVectorAttribute : Attribute + { + /// + /// Gets or sets the xaml vector. + /// + public String XamlVector { get; set; } + + /// + /// Initializes a new instance of the class. + /// + /// The xaml vector. + public XamlVectorAttribute(String xamlVector) + { + XamlVector = xamlVector; + } + } +} -- cgit v1.3.1