c#
小小虎虎狗
这个作者很懒,什么都没留下…
展开
-
使用c#重绘凸出的3d边框
使用c#重绘凸出的3d边框1.新建c#项目2.新建一个类,继承于一个控件,如label控件3.新建类代码操作4.窗口代码5.运行效果6.源码MyLabel源码using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Form原创 2021-10-18 16:51:11 · 751 阅读 · 0 评论 -
4.c#操作文件及文件夹
c#操作文件及文件夹using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;namespace rename1{public partial class Form1 : Form{public原创 2020-09-11 14:17:50 · 206 阅读 · 0 评论 -
3.c#打开图片,实现图片自动切换-vs2015
1.新建一个窗体程序,拖入一个picturebox控件2.拖入一个定时器实现定时切换图片3.代码实现using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Text;using System.Windows.Forms;namespace WindowsFo原创 2020-09-10 14:31:11 · 3405 阅读 · 0 评论 -
2.C#使用标签在图片上显示文字(背景为图片的背景(或者是picturebox控件作为背景))-vs2015
1.在主窗口添加一个picturebox控件2.添加一个lable标签控件在picturebox上修改下位置属性修改下BackColor为透明背景(TransParent)设置下标签lable控件的父类为当前添加的picturebox控件(设置透明背景,透明的背景就是控件的父类)3.效果...原创 2020-09-10 10:30:19 · 1715 阅读 · 0 评论 -
1.c#显示文字问题–vs2015
c#显示文字问题–vs2015使用public void DrawString(string s, Font font, Brush brush, float x, float y);函数1.新建一个窗体,拖入一个pictureox也可以不使用picturebox也行2.由于绘制文本需要在主窗体初始化之后才能进行操作,所以需要一个延时函数,这里使用定时器来达到延时的目的(不然不能够绘制出文本,调试了小半天才知道)定时器定时时间设置和使能定时器3.代码自定义一个函数,用来实现绘制文本操作原创 2020-09-09 21:43:35 · 621 阅读 · 0 评论