自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

原创 c# 提取括号内的内容 截取()内的内容

string str = textBox1.Text;//获取字符串int arr = str.IndexOf(")") -1 - str.IndexOf("(");//结束位置 减 1 再减 开始位置 获取中间位置数String str2 = str.Substring(str.IndexOf("(") + 1, arr);//参数1:开始位置加1 参数2:长度:中间位置数textBox2.Text=str2; //返回给textBox2...

2020-08-17 11:24:43 4795

原创 android stdio Service服务使用方法 LocalBroadcastManager使用方法 广播使用方法 Intent 意图使用方法

UartService 服务文件package com.example.led20;import android.app.Service;import android.content.Intent;import android.os.Binder;import android.os.IBinder;import android.util.Log;import androidx.annotation.Nullable;import androidx.localbroadcastma

2020-07-26 07:52:11 243

原创 C# 十六进制显示界面 WinHex类似界面 转换十六进制显示 编程器界面显示源代码

界面展示代码展示:using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;//若有不明白的地方可以咨询qq457452016 欢迎交流namespace

2020-06-11 04:52:02 1906 1

原创 CY7C68013A 使用keil 5 c51 开发

打开Keil_v5安装目录 D:\C51\Keil_v5\C51\INC\Cypress 。将Fx2.h fx2regs.h fx2regs.inc 三个文件移动到其他目录。型号选择Device --Cypress–EZ-USB FX2LP(CY7C68XXX-X)。USER-- After Build/Rebuild RUN #1 选择点 ✔ ,User Command 输入以下代码转成iic文件例如:Hex2bix.exe 所在目录 E:\

2020-05-25 14:18:51 1149

原创 C# chart1 添加滚动条的缩放 鼠标滚轮控制缩放

namespace APP{public partial class Form1 : Form{public Form1(){InitializeComponent();} private void Form1_Load(object sender, EventArgs e) { chart1.ChartAreas["ChartArea1"].Axis...

2020-03-31 09:45:35 4981

提示
确定要删除当前文章?
取消 删除