Exemplo n.º 1
0
 public void AddTag(FlowTag tag)
 {
     if (this.tags.Contains(tag.id) == false)
     {
         this.tags.Add(tag.id);
     }
 }
Exemplo n.º 2
0
		public void RemoveTag(FlowWindow window, FlowTag tag) {
			
			window.RemoveTag(tag);

			this.isDirty = true;

		}
Exemplo n.º 3
0
        public void AddTag(FlowWindow window, FlowTag tag)
        {
            var contains = this.tags.FirstOrDefault((t) => t.title.ToLower() == tag.title.ToLower());

            if (contains == null)
            {
                this.tags.Add(tag);
            }
            else
            {
                tag = contains;
            }

            window.AddTag(tag);

            this.isDirty = true;
        }
Exemplo n.º 4
0
		public void RemoveTag(FlowWindow window, FlowTag tag) {
			
			window.RemoveTag(tag);

			this.isDirty = true;

		}
Exemplo n.º 5
0
		public void AddTag(FlowWindow window, FlowTag tag) {

			var contains = this.tags.FirstOrDefault((t) => t.title.ToLower() == tag.title.ToLower());
			if (contains == null) {

				this.tags.Add(tag);

			} else {

				tag = contains;

			}

			window.AddTag(tag);

			this.isDirty = true;

		}
Exemplo n.º 6
0
		public static void RemoveTag(FlowWindow window, FlowTag tag) {
			
			FlowSystem.instance.data.RemoveTag(window, tag);

		}
Exemplo n.º 7
0
		public static void AddTag(FlowWindow window, FlowTag tag) {

			FlowSystem.instance.data.AddTag(window, tag);

		}
Exemplo n.º 8
0
 public static void RemoveTag(FlowWindow window, FlowTag tag)
 {
     FlowSystem.instance.data.RemoveTag(window, tag);
 }
Exemplo n.º 9
0
 public static void AddTag(FlowWindow window, FlowTag tag)
 {
     FlowSystem.instance.data.AddTag(window, tag);
 }
Exemplo n.º 10
0
 public void RemoveTag(FlowTag tag)
 {
     this.tags.Remove(tag.id);
 }
Exemplo n.º 11
0
		public void RemoveTag(FlowTag tag) {

			this.tags.Remove(tag.id);

		}
Exemplo n.º 12
0
		public void AddTag(FlowTag tag) {
			
			if (this.tags.Contains(tag.id) == false) {

				this.tags.Add(tag.id);

			}

		}