-
一个月挑战C++电子书
说明: 一个月挑战C++电子书,有大量的例子学习。(There are a lot of C++ examples to learn.)
- 2020-06-21 00:20:01下载
- 积分:1
-
ImageMoveTest
WPF做的自由移动图片的程序,欢迎大家一起学习!(WPF to do the procedure free movement of images, welcome everyone to learn!)
- 2010-01-27 15:55:57下载
- 积分:1
-
C# 为textBox文本框控件添加颜色光环
C# 为文本框控件添加颜色光环,是不是把textBox装扮得很漂亮呢?外发光的文本框,有点沙沙的感觉,核心代码有兴趣可参考:
private void Window_Loaded(object sender, RoutedEventArgs e)
{//为文本框控件添加颜色光环
var MyOuterGlowBitmapEffect = new System.Windows.Media.Effects.OuterGlowBitmapEffect();
MyOuterGlowBitmapEffect.GlowSize = 30;
Color MyColor = new Color();
MyColor.ScA = 1;
MyColor.ScB = 1;
MyColor.ScG = 0;
MyColor.ScR = 0;
MyOuterGlowBitmapEffect.GlowColor = MyColor;
MyOuterGlowBitmapEffect.Noise = 1;
MyOuterGlowBitmapEffect.Opacity =0.8;
this.textBox1.BitmapEffect = MyOuterGlowBitmapEffect;
}
完整的C#可编译源代码,请下载本源码。
- 2022-07-09 20:47:57下载
- 积分:1
-
AVR-ATMEGA16
atmel ATMEGA16 Microcontroller
- 2014-02-15 15:42:30下载
- 积分:1
-
软启PWM
用于全桥逆变电路的移相软启控制程序,周期和启动时间均可调节。(Phase-shifting soft-start control program for full-bridge inverters has adjustable cycle and start-up time.)
- 2020-06-16 06:40:02下载
- 积分:1
-
stm32f1 I2C DMA 源代码
在这个链接上,可以重用大部分(或全部)的代码,在这个链接中,我提供了。
- 2023-06-29 16:30:03下载
- 积分:1
-
curving
利用此函数可以在最小二乘意义上解决非线性曲线拟合(数据
拟合)问题。也就是说,给定输入数据xdata,以及观测的输出数据ydata,找到系数x,使
得函数F(x,xdata)能够最好的拟合向量值(MLS method not only can be applied for the purpose of curve (or surface) fitting,
but also curve (or surface) interpolation when compactly supported singular weighted
function was used. The effective measure has been applied to eliminate singularity in
MLS interpolation. In addition, the bad fitting or interpolation accuracy near the
boundary was improved.
)
- 2014-08-06 10:00:13下载
- 积分:1
-
tn46_c-code_example_for_scp1000-d01_rev_0.1_
大气压检测传感器驱动,经过验证,可以使用(tn46_c-code_example_for_scp1000-d01_rev_0.1)
- 2009-03-13 09:00:41下载
- 积分:1
-
Bezier
该程序是用C 语言编写的图形学中的贝济尔曲线,简单实用易懂(this program is Bezier program about computer picture,wich is degn by c.)
- 2012-12-14 10:17:50下载
- 积分:1
-
SpellChecking
英文文章中单词拼写检查,并推荐可能存在的正确单词示例源码(Article in the English word spelling checker, and recommend the correct word there may be examples of source)
- 2007-08-03 01:19:16下载
- 积分:1