摘要: 一、数据类型 1、整型 int 16位 -32768~32767 unsigned int 16位 0~65535 2、字符型 char 8位 -128~127 unsigned char 8位 0~255 3、浮点型 float 32位 double 64位 二、变量与常量 1、常量 定义:#de 阅读全文
posted @ 2020-10-06 15:00 王钰 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 好处是,XAML界面Binding到数据后,只需要更新数据,无需再次手动绑定即可完成界面更新。 1.创捷数据类,Model。 例如我创建的CarInfo.cs namespace MVVMDemo1 { public class CarInfo { string CarName_; string C 阅读全文
posted @ 2020-10-06 10:52 王钰 阅读(257) 评论(0) 推荐(0) 编辑
摘要: WPF匿名线程执行 Thread thread = new Thread(() => { 此处填写代码 }); thread.Start(); WPF线程启动 Thread thread = new Thread( 此处填写要执行的函数 ); thread.Start(); WPF线程中更新UI t 阅读全文
posted @ 2020-10-06 10:51 王钰 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 百度地图, 去掉左下部分的标志 添加以下css, 即可去掉 .anchorBL a{ display: none; } .anchorBL img{ display: none; } .anchorBL span{ display: none!important; } var map = new B 阅读全文
posted @ 2020-10-06 10:49 王钰 阅读(1348) 评论(0) 推荐(0) 编辑