示例#1
0
        public void QString(string ingresado, string esperado)
        {
            var nombre     = @"\q";
            var ingresado2 = nombre + ingresado;
            var esperado2  = nombre + esperado;
            var tag        = new TagQ(ingresado2);

            Assert.AreEqual(esperado2, tag.ToString());
        }
示例#2
0
 public static TagQ onmouseup(this TagQ tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
示例#3
0
 public static TagQ onmousedown(this TagQ tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
示例#4
0
 public static TagQ ondblclick(this TagQ tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
示例#5
0
 public static TagQ dir(this TagQ tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
示例#6
0
 public static TagQ xmllang(this TagQ tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
示例#7
0
 public static TagQ lang(this TagQ tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
示例#8
0
 public static TagQ onmouseout(this TagQ tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
示例#9
0
 public static TagQ style(this TagQ tag, string value)
 {
     tag.Style = value; return(tag);
 }
示例#10
0
 public static TagQ @class(this TagQ tag, string value)
 {
     tag.Class = value; return(tag);
 }
示例#11
0
 public static TagQ id(this TagQ tag, string value)
 {
     tag.Id = value; return(tag);
 }
示例#12
0
 public static TagQ cite(this TagQ tag, string value)
 {
     tag.Cite = value; return(tag);
 }
示例#13
0
 public static TagQ onkeyup(this TagQ tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
示例#14
0
 public static TagQ onkeydown(this TagQ tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
示例#15
0
 public static TagQ onkeypress(this TagQ tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
示例#16
0
 public static TagQ onmouseover(this TagQ tag, string value)
 {
     tag.OnMouseOver = value; return(tag);
 }
示例#17
0
 public static TagQ onmousemove(this TagQ tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
示例#18
0
 public static TagQ title(this TagQ tag, string value)
 {
     tag.Title = value; return(tag);
 }