region 用于绑定ViewModel部分 public ICommand Command { get { return (ICommand)GetValue(CommandProperty); } set { SetValue(CommandProperty, value); } } // Us ...
CentOS8发布了,安装了下试试,结果发现中文输入法调不出来。系统安装完成后,在系统【设置】的【Region&Language】里的【输入源】里可以添加汉语输入源,但是不能打中文字。下面记录解决方法:1,安装拼音输入法$ sudo dnf install ibus-libpinyin.x86_64 ...
分类:
其他好文 时间:
2019-11-13 01:10:06
阅读次数:
454
//linq to object public class LinqShow { #region Data Init private List<Student> GetStudentList() { #region 初始化数据 List<Student> studentList = new List ...
分类:
其他好文 时间:
2019-11-12 00:48:12
阅读次数:
74
构造请求 首先构造请求,也就是要对哪个具体接口进行访问,需要提供什么必要的参数。在构造请求 "(点击查看" 中可以看到,对 DMS 服务来说必要的请求构成包括以下部分 + 请求URI,例如 (不同区域的Region部分不同) + 请求方法,如 "GET"、"POST" + 请求消息头,必选的是 "C ...
分类:
其他好文 时间:
2019-11-05 18:39:18
阅读次数:
73
hbase数据热点问题:一个region上访问数据量过多,解决方案是对热点数据的rowkey进行预处理,添加一些前缀东西,将热点数据分散到多个region中。预合并?动态分区?就是一开始初始数据的时候,就要对数据进行分区,存储到不同的region上,负载均衡例子:比如按电话号码开头分区,容易将电话号码都分到一个区中。后面可以按电话号码的逆序作为rowkey,这样就比较随机了。ctrL+backsp
分类:
其他好文 时间:
2019-11-05 09:26:31
阅读次数:
110
抄自:https://www.jianshu.com/p/4945d9cf14e5 一、常见class关键词 布局类:header, footer, container, main, content, aside, page, section 包裹类:wrap, inner 区块类:region, ...
分类:
其他好文 时间:
2019-11-03 12:59:04
阅读次数:
123
一、前言 在调用了alloc_chrdev_region函数或register_chrdev_region函数之后可以在/proc/devices中看到该设备的主设备号,比如我注册的hello模块的主设备号为1024,如下图: 现在使用lsmod能看到驱动名,使用cat /proc/devices能 ...
分类:
系统相关 时间:
2019-10-31 00:31:06
阅读次数:
128
http://poj.org/problem?id=2096 Description Ivan is fond of collecting. Unlike other people who collect post stamps, coins or other material stuff, he ...
分类:
其他好文 时间:
2019-10-29 21:48:10
阅读次数:
113
#region-----画面のテキストボックスの全選択処理----- /// /// 画面のテキストボックスの全選択処理 /// /// public static void TextBoxEnter_SelectAll(Control crol) { S... ...
以ASP.NET Core WebAPI 作后端 API ,用 Vue 构建前端页面,用 Axios 从前端访问后端 API ,包括文件的上传和下载。 准备文件上传的API #region 文件上传 可以带参数 [HttpPost("upload")] public JsonResult uploa ...