Beispiel #1
0
 protected void Select_Event(object sender, DirectEventArgs e)
 {
     if (TagSelect != null)
     {
         TagSelect.Invoke(sender, new TagSelect_EventArgs(e.ExtraParams));
     }
 }
Beispiel #2
0
    private void Awake()
    {
        if (tagSelect == null)
        {
            tagSelect = FindObjectOfType <TagSelect>();
        }

        toggle   = GetComponent <Toggle>();
        nameText = GetComponentInChildren <Text>();

        toggle.onValueChanged.RemoveAllListeners();
        toggle.onValueChanged.AddListener(SelectTag);
    }
Beispiel #3
0
 public static TagSelect onchange(this TagSelect tag, string value)
 {
     tag.OnChange = value; return(tag);
 }
Beispiel #4
0
 public static TagSelect onfocus(this TagSelect tag, string value)
 {
     tag.OnFocus = value; return(tag);
 }
Beispiel #5
0
 public static TagSelect onblur(this TagSelect tag, string value)
 {
     tag.OnBlur = value; return(tag);
 }
Beispiel #6
0
 public static TagSelect onmousedown(this TagSelect tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
Beispiel #7
0
 public static TagSelect tabindex(this TagSelect tag, int value)
 {
     tag.TabIndex = value; return(tag);
 }
Beispiel #8
0
 public static TagSelect title(this TagSelect tag, string value)
 {
     tag.Title = value; return(tag);
 }
Beispiel #9
0
 public static TagSelect xmllang(this TagSelect tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Beispiel #10
0
 public static TagSelect onkeyup(this TagSelect tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
Beispiel #11
0
 public static TagSelect name(this TagSelect tag, string value)
 {
     tag.Name = value; return(tag);
 }
Beispiel #12
0
 public static TagSelect onkeypress(this TagSelect tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
Beispiel #13
0
 public static TagSelect onkeydown(this TagSelect tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
Beispiel #14
0
 public static TagSelect onmouseout(this TagSelect tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
Beispiel #15
0
 public static TagSelect onmousemove(this TagSelect tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
Beispiel #16
0
 public static TagSelect onmouseup(this TagSelect tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
Beispiel #17
0
 public static TagSelect id(this TagSelect tag, string value)
 {
     tag.Id = value; return(tag);
 }
Beispiel #18
0
 public static TagSelect size(this TagSelect tag, int value)
 {
     tag.Size = value; return(tag);
 }
Beispiel #19
0
 public static TagSelect @class(this TagSelect tag, string value)
 {
     tag.Class = value; return(tag);
 }
Beispiel #20
0
 public static TagSelect dir(this TagSelect tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Beispiel #21
0
 public static TagSelect lang(this TagSelect tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
Beispiel #22
0
 public static TagSelect disabled(this TagSelect tag, Disabled value)
 {
     tag.Disabled = value; return(tag);
 }
Beispiel #23
0
 public static TagSelect multiple(this TagSelect tag, Multiple value)
 {
     tag.Multiple = value; return(tag);
 }
Beispiel #24
0
 public static TagSelect ondblclick(this TagSelect tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }