c#
文章平均质量分 50
ydsyang
数据处理、格式化数据
展开
-
C#获取cpu/主板/硬盘序列号
MessageBox.Show("硬盘序列号:" + id.Trim(), "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);MessageBox.Show("cpu序列号:" + cpuInfo.Trim(), "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);//获取cpu序列号。原创 2023-12-16 11:26:50 · 2806 阅读 · 1 评论 -
c#datagridview获取选中复选框总数
private void dataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e) { int rowInde = e.RowIndex; if ((Convert.ToBoolean(dataGridView.Rows[rowInde].Cells[0].Value) == true)) { da...原创 2020-12-10 20:00:19 · 790 阅读 · 0 评论 -
C#圆通订单创建接口测试类
class YtoUtil { private static string requestURL = "http://opentestapi.yto.net.cn/service/order_create/v1/"; //请求地址 private static string clientId = "TEST"; //客户编码 private static string partnerId = "123456"; //商家秘钥 .原创 2020-11-06 11:27:30 · 478 阅读 · 0 评论 -
DataGridView获取行中的数据
1.获取知道的第一行第一列的数据:<span style="color:#000000"><code>dataGridView1<span style="color:#009900 !important">.Rows</span>[<span style="color:#006666 !important">0</span>]<span style="color:#009900 !important">.Cells&l翻译 2020-11-06 11:20:57 · 4281 阅读 · 0 评论 -
c#获取combox选中的value
dynamic test = this.comboBoxStore.SelectedItem as dynamic;MessageBox.Show(test.Row.ItemArray[1]);原创 2020-11-03 17:06:10 · 3271 阅读 · 0 评论 -
c#禁止防止重复打开窗口
static class Program { /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRende...原创 2021-01-12 11:31:38 · 454 阅读 · 0 评论 -
设置ComboBox的DisplayMember和ValueMember属性并取值
//数据转换dynamic model = JsonConvert.DeserializeObject(result);this.comboBoxExp.DataSource = model;this.comboBoxExp.DisplayMember = "name";this.comboBoxExp.ValueMember = "id";//获取dynamic expItem = this.comboBoxExp.SelectedItem as dynamic;string e..原创 2021-01-06 16:14:44 · 1491 阅读 · 1 评论