-
Html编辑器,不是b/s结构是c/s结构
Html编辑器,不是b/s结构是c/s结构-Html editor, not the b/s structure is the c/s architecture
- 2023-03-10 00:00:03下载
- 积分:1
-
内存映射的实现
这是一个高效使用内存的代码示例。代码可以使用vs2010进行编译。其中的代码比较规范,实现也比较简洁高效,所以贴出来供大家探讨学习。
- 2023-02-01 13:05:04下载
- 积分:1
-
C# WPF实现图片浮雕、凹凸的图像效果
Visual C# WPF实现图片浮雕、凹凸的图像效果,看上去很有雕刻的效果,这个功能对于熟悉PS的朋友,可能不陌生,用C#的WPF技术,可以轻松实现类似效果,只是说法不一样,在本例中,叫做“凹凸位图特效”,本代码在功能实现上,分为全部实现和局部实现,代码参考如下:
private void button1_Click(object sender, RoutedEventArgs e)
{//凹凸位图特效全部作用于图像
this.image1.BitmapEffectInput = null;
var MyEffect = new System.Windows.Media.Effects.EmbossBitmapEffect();
MyEffect.Relief = 0.8;
MyEffect.LightAngle =320;
this.image1.BitmapEffect = MyEffect;
}
private void button2_Click(object sender, RoutedEventArgs e)
{//凹凸位图特效部分作用于图像
var MyEffect = new System.Windows.Media.Effects.EmbossBitmapEffect();
MyEffect.Relief = 0.8;
MyEffect.LightAngle = 320;
this.image1.BitmapEffect = MyEffect;
var MyInput = new System.Windows.Media.Effects.BitmapEffectInput();
MyInput.AreaToApplyEffect = new Rect(.25, .25, .50, .50);
MyInput.AreaToApplyEffectUnits = System.Windows.Media.BrushMappingMode.RelativeToBoundingBox;
this.image1.BitmapEffectInput= MyInput;
}
完整
- 2022-02-20 09:13:59下载
- 积分:1
-
一个含有多个应用程序的C语言编程,需要的可以下了看看。
一个含有多个应用程序的C语言编程,需要的可以下了看看。-containing a number of applications in the C programming language, the need to be under a look at.
- 2023-01-13 03:25:03下载
- 积分:1
-
MVVMDemo windowphone项目例子源码下载
MVVM模式的demo
- 2015-03-24下载
- 积分:1
-
inventry control syatem
inventry control syatem
- 2022-02-25 00:41:27下载
- 积分:1
-
Excel_DataReader_src
C#中的excel中如果用cell,则速度会非常慢,特别是写入的时候 将excel做为数据库操作则失去方便性.这个源码旨在提高C#中excel处理的数据与便捷性.(C# In excel in the If cell, then the speed will be very slow, especially when writing to excel as database operations have lost the convenience. This source seeks to increase the C# In excel data processed and convenience.)
- 2007-12-29 11:13:17下载
- 积分:1
-
二维码编码
二维码编码
实现二维图像的编码
- 2022-05-09 05:20:30下载
- 积分:1
-
C# 合并DataGridView控件单元格数据
C# 合并DataGridView控件单元格,合并列相同的内容,结合数据库来实现:
if (conn.State == ConnectionState.Closed)//判断数据库是否关闭
conn.Open();//打开数据库
string selectString = "select * from tb_emp";//定义查询字符串
Adapter = new SqlDataAdapter(selectString, conn);//实例化填充数据集和更新数据库的对象
Adapter.Fill(dataSet);//填充dataSet数据集
dataGridView1.DataSource =dataSet.Tables[0];//为dataGridView1设置数据源
conn.Close();//关闭数据库
填写单元格内容,相同的内容的单元格只填写第一个,对每一列相同单元格进行合并
- 2023-08-28 20:40:03下载
- 积分:1
-
。源代码网CLI实现的
.net CLI的实现源代码-. net CLI realization of the source code
- 2022-07-08 15:53:12下载
- 积分:1