摘要: 先说下下面代码中用到几个知识点 1.props 父组件通过props讲数据传递给子组件。 2.$emit() 子组件通过$emit触发父组件自定义事件 All code: 阅读全文
posted @ 2019-10-22 20:44 袁浩178 阅读(145) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>v-if, v-show, v-for 指令</title> <script src="Vue.js"></script> </head> <body> <di 阅读全文
posted @ 2019-10-20 13:11 袁浩178 阅读(179) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>计算属性与监听器</title> <script src="Vue.js"></script> </head> <body> <div id="root"> 姓:<input v-model="firstName"/> 阅读全文
posted @ 2019-10-19 23:55 袁浩178 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 属性绑定和双向数据绑定 hello world {{content}} 阅读全文
posted @ 2019-10-19 23:28 袁浩178 阅读(478) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将JSON文本转换成HttpResponseMessage数据行 /// </summary> /// <param name="HttpResponseMessage文本">HttpResponseMessage文本</param> 阅读全文
posted @ 2019-10-17 10:06 袁浩178 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: 将 转换成 阅读全文
posted @ 2019-10-16 20:53 袁浩178 阅读(1536) 评论(1) 推荐(2) 编辑
摘要: C#.ToString()格式大全 stringstr1=string.Format("{0:N1}",56789); //result: 56,789.0 stringstr2=string.Format("{0:N2}",56789); //result: 56,789.00 stringstr3=string.Format("... 阅读全文
posted @ 2019-10-08 10:28 袁浩178 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 以上代码是同步的,用户体验不好。 下面是经过改善的异步方法 阅读全文
posted @ 2019-09-26 09:48 袁浩178 阅读(1649) 评论(0) 推荐(0) 编辑
摘要: bool G_MouseFlag; Pen pen = new Pen(Color.Black); Point lastPoint; private void _018_MouseMove(object sender, MouseEventArgs e) { Graphics graphics... 阅读全文
posted @ 2019-08-10 17:10 袁浩178 阅读(1698) 评论(0) 推荐(0) 编辑
摘要: 功能:将一个或多个按键消息发送到活动窗口,就如同在键盘上进行输入一样。 语法:SendKeys.Send(string keys);SendKeys.SendWait(string keys); 参数:keys 要发送的击键字符串。 案例: SendKeys.Send("{CAPSLOCK}");/ 阅读全文
posted @ 2019-08-10 14:37 袁浩178 阅读(3763) 评论(0) 推荐(0) 编辑