E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Winforms
使用免费组件view pdf 文档
“Is there any way to view PDF files in a
Winforms
tool?”
·
2015-11-11 18:40
view
GOA
WinForms
系列
介绍一个来至比利时的公司的免费产品,GOA
WINFORMS
。 有时一些其他的应用需求,让人头疼(比如Flash)。而现在可以专注于C#,一样能完成Flash的需求。
·
2015-11-11 17:25
WinForm
Outlook-style Wheel Mouse Behavior
原文链接:http://social.msdn.microsoft.com/forums/en-US/
winforms
/thread/eb922ed2-1036-41ca-bd15-49daed7b637c
·
2015-11-11 17:18
style
C#窗体 隐藏标题栏后 移动窗口的方法
特别是当你的
WinForms
窗口没有窗口栏(Form.FormBorderStyle = None),用户无法通过点击窗口栏移动窗口时,这种实现就很必要了。
·
2015-11-11 16:28
C#
Visual studio 2008
Winforms
程序安装部署说明——图解
在项目中,用到的,总结了一下。 1、 在解决方案里,新添加一个安装项目,取名为“Setup1”(名字随便取); 2、 右键安装项目“Setup1”,选择视图,切换到文件系统,如图; 文件系统视图如下: 3、 选中“应用程序文件夹”,右键选择添加,添加项目输出,如下图; 4、 在添加项目输出对话框里,同时选择“主输出”和“
·
2015-11-11 15:19
WinForm
WinForms
中只能输入数字的文本框(更新)
private void textBox1_KeyPress( object sender, KeyPressEventArgs e) { // 只能是0~9之间的数字 并支持删除键 if ( ! ((e.KeyChar&
·
2015-11-11 13:36
WinForm
C++/CLI程序启动时_CrtIsValidHeapPointer(pUserData)错误
CrtIsValidHeapPointer(pUserData)): 这是ms的一个已知bug,原因: The reason why you get this error is that a
winforms
·
2015-11-11 09:14
heap
RadControls for
Winforms
Q2 2008 SP1
RadControls for
WinForms
Q2 2008 SP1 Release Notes (
·
2015-11-11 08:15
WinForm
Look and Feel Technology - Much More than just Paint Styles
paper will introduce you to the LookAndFeel technology developed by Developer Express for its .NET
WinForms
·
2015-11-11 08:21
style
[项目过程中所遇到的各种问题记录]编辑器篇——FCKeditor相关知识及各种常见使用问题
; 马上2010年就要结束了,所以这几天准备花点时间把这一年中在开发过程中遇到的问题及解决方案记录下来,以备日后使用,目前先规划了:编辑器篇(仅针对asp.net开发中的fckeditor)、图表篇(
winforms
·
2015-11-11 08:47
fckeditor
[项目过程中所遇到的各种问题记录]图表篇——asp.net上不错的图表选择—FunsionCharts
项目过程中所遇到的各种问题记录]图表篇——asp.net上不错的图表选择—FunsionCharts 在上一篇文章中我介绍了
winforms
·
2015-11-11 08:46
asp.net
.Net 报表(rdlc) 学习
//引用 using Microsoft.Reporting.
WinForms
; //新建报表参数 ReportParameter Rp_s_type = new ReportParameter(
·
2015-11-11 07:15
.net
winform 数据绑定 对象的属性,后台异步更新此对象的属性产生异常
When one is trying to use the MVC model on the
WinForms
, it is possible to use the INotifyPropertyChanged
·
2015-11-11 04:48
WinForm
制作一个WinForm的闪屏
显示一个
WinForms
闪屏(Splash Screen)我的应用程序需要一定的时间来启动。
·
2015-11-11 03:33
WinForm
在visual studio 2008中制作水晶报表视频
www.codeedu.com/sk_down/水晶报表(苏坤讲).rar 第一集:水晶报表的设计 http://www.56.com/u73/v_NTc5OTEyNzA.html 第二集:在
winforms
·
2015-11-11 01:12
2008
使用自定义验证组件库扩展 Windows 窗体(MSDN)
下载
winforms
03162004_sample.msi 示例文件。
·
2015-11-10 22:32
windows
放假归来
走之前,匆忙将以前的一个通过WebService上传文件到服务器的
WinForms
程序添加了多线程上传的能力。 .Net Framework对多线程有非常良好的支持。而对
·
2015-11-09 14:07
忙着满足客户的需求...
这几天忙着满足客户对一个.Net
WinForms
(调用服务器上的WebService的)程序的需求,提高了WebService数据传输速度(数据传送前先压缩,传到后再解压),解决了
WinForms
程序占用内存过大的问题
·
2015-11-09 14:05
需求
WinForms
中后台执行耗时的操作
在
WinForms
中,有时要执行耗时的操作,在该操作未完成之前操作用户界面,会导致用户界面停止响应。 解决的方法就是新开一个线程,把耗时的操作放到线程中执行,这样就可以在用户界面上进行其它操作。
·
2015-11-08 14:54
WinForm
Winforms
的DataGrid怎么使 Bool 型字段值显示为文字 是/否
Winforms
的DataGrid怎么使 Bool 型字段值显示为文字 是/否[转载] 方法一: 如果你的sql是这样的 select
·
2015-11-08 13:48
datagrid
Office with .Net(二)之外传―――“彻底干净的”关闭Office程序
比如,在那篇文章中,我们创建了一个C#编写的
WinForms
程序,在程序中直接启动Word,用代码操作Word自动完成一些工作,然后再用代码将Word关闭
·
2015-11-08 12:42
Office
TechED2004广州 第二天
第一个Session是听的黄鹏的《智能客户端:在.NET下开发数字墨水应用程序》,使用数字墨水的SDK,我们可以轻松将这个技术整合到我们自己的
WinForms
和WebForms程序中。
·
2015-11-08 12:00
ch
C#
winforms
如何禁止同一个程序运行两次
修改Program.cs 文件 /// summary /// 应用程序的主入口点。 /// /summary [STAThread] &nbs
·
2015-11-08 11:46
WinForm
在网页中使用Winform控件,并调整其大小(using Winform control in ASP.NET and adjust its size)
.15seconds.com/issue/030610.htm http://codebetter.com/blogs/peter.van.ooijen/archive/2007/06/18/including-a-
winforms
-user-control-in-an-asp
·
2015-11-08 10:50
asp.net
OpenCV常用组件——HighGUI/core/imgproc
【HighGUI】 HighGUI接模块提供一个功能强大的UI接口,可以在MFC、Qt、
WinForms
、Cocoa等平台下使用,甚至不需要其他的平台。
tfygg
·
2015-11-08 00:00
opencv
core
highgui
imgproc
ChartConlrol二维图表类型
WinForms
Controls > Controls > Chart Control > Concepts &
·
2015-11-07 14:57
chart
理解数据点,自变量和因变量(参数和值)ChartControl
WinForms
Controls > Controls > Chart Control > Fundamentals
·
2015-11-07 14:56
chart
ChartControl第一课简短的控件初步设计
WinForms
Controls > Controls > Chart Control > Getting Started
·
2015-11-07 14:54
chart
一些DevExpress控件概况!!!!主要DocumentManager.WindowsUIView.Tile
WinForms
Controls The links below provide comprehensive information on using DevExpress
·
2015-11-07 14:54
DevExpress
使用.Net访问Office编程接口
其实,不管是使用哪种具体的技术来针对Office进行开发(比如VSTO,或者用C#编写一个Office Add-in,或者在一个
WinForms
程序中调用Office的功能,甚至在一个ASP.NET应用的服务器端启动一个
·
2015-11-07 14:07
Office
[
WinForms
]
// Author:Stephen.Ju // Date:2007-08-10 using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlCli
·
2015-11-07 12:03
WinForm
使用.Net访问Office编程接口
其实,不管是使用哪种具体的技术来针对Office进行开发(比如VSTO,或者用C#编写一个Office Add-in,或者在一个
WinForms
程序中调用Office的功能,甚至在一个ASP.NET应用的服务器端启动一个
·
2015-11-07 12:25
Office
Creating the Same Program in Windows Forms and WPF
本文转自http://www.codeproject.com/KB/WPF/
winforms
2wpf.aspx Shows how to write the same simple program
·
2015-11-07 11:06
windows
DevExpress换肤手把手教程
为软件换肤,是一个永恒的主题,
winforms
换肤,现在b/s也换肤。呵呵。 在devexpress中,换肤就很简单,不需要我们自己去制造皮肤,官文就有很丰富的皮肤包。下面来讲解一下这个问题。
·
2015-11-07 09:18
DevExpress
在 ASP.NET MVC 项目中使用 WebForm、 HTML
原文地址:http://www.cnblogs.com/snowdream/archive/2009/04/17/
winforms
-in-mvc.html ASP.NET MVC和WebForm各有各的优点
·
2015-11-06 07:42
asp.net
知识管理系统Data Solution研发日记之十一 数据绑定技术的应用
下面介绍
WinForms
的数据绑定技术,有了这一项技术,写出的代码简洁,优美。 请看
·
2015-11-05 08:36
Data
WinForms
.DataGridView控件
使用数据绑定的方式在其中显示数据1. 可以在设计时不添加Columns集合,指定DataSource属性后,列的出现顺序无法预料(.NET 会将该DataSource对象的全部公共属性拉上去显示),目前我也不知道是否可以预先安排;2.可以在设计时手工添加Columns集合,并指定这些列标题的DataPropertyName属性为你想在这一列绑定的属性名称;这种方式可以达到预先安排列的出现顺序的目的
·
2015-11-05 08:15
datagridview
WinForms
.TreeView控件
树形结构是如何产生的 TreeView其实没有哪个属性指明哪个节点为根节点,TopNode真不知道是干什么用的; 它的树形结构是这样产生的: TreeView tvEg = new TreeView( ); TreeNode rootNode = new TreeNode("Folder0"); TreeNode subNode1 = new TreeNod
·
2015-11-05 08:15
treeview
用DevExpress做界面开发:仿Office的
Winforms
界面框架
Demo2:引入了Microsoft创新性的动态CRM,构建触摸友好的
Winforms
应用程序。Demo3:基于OutLook的应用程序。Demo4:销售仪表盘。D
百mumu
·
2015-11-04 15:00
DevExpress
WinForms
多线程编程之摇奖程序
利用多线程模拟一个电脑摇奖程序,如图所示。在点击【滚动号码】,启动线程,对后台的电话号码进行循环显示;点击【开奖】按钮,关闭线程,此时显示在文本框中的电话号码即为中奖号码 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;usi
·
2015-11-03 22:50
WinForm
WinForms
多线程编程之多线程计算器
编写多线程程序,实现输入两个数字X、Y,同时启动4个线程,分别计算加减乘除。并将结果显示出来,如图所示 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using
·
2015-11-03 22:49
WinForm
WinForm中实现插件式开发
首先下载ICSharpCode.Core.dll和ICSharpCode.Core.
WinForms
.dll,然后配置一个Addin文件,取名为SubMenu.Addin,内容如下:
·
2015-11-03 22:04
WinForm
Using Spring in Web and
WinForms
假设Solution中有3个Project: TheSolution.Bll, WebAppUsingSpring, WinFormsAppUsingSpring. 其中TheSolution.Bll会被后2者调用, 需要在后2者中使用Spring配置. 准备 配置WinFormsAppUsingSpring 配置WebAppUsingSpring
·
2015-11-03 21:52
WinForm
Winforms
和资源(Resources/resx)
http://www.sellsbrothers.com/writing/ResourcesAndWinForms.htm 资源(A resource)是在Build期间被绑定在程序集里的命名数据。例如,你可以在你的应用程序中是用如下方式,通过载入文件系统中的图片,来设置背景图片: public MainForm() { InitializeComponent()
·
2015-11-02 18:29
resource
Microsoft Windows Forms QuickStarts Tutorial - Getting Started
http://samples.gotdotnet.com/quickstart/
winforms
/ Dynamic Layout in Windows Forms 1。
·
2015-11-02 17:11
Microsoft
开源网站
tabindex=3&tabid=40http://www.syncfusion.com/FAQ/
WinForms
/ http://www.dapha.net/down/show.asp?
·
2015-11-02 17:36
开源
使用重绘项美化WinForm中的控件
如果你觉得项目中的ComboBox、ListBox或其它的
Winforms
控件不能满足你的显示要求,包括窗体在内很多控件都支持重绘修改显示样式。
·
2015-11-02 15:48
WinForm
怎样让
WinForms
下DataGrid可以像ASP.NET下的DataGrid一样使用自定义的模板列
被问到一个问题:怎么把
WinForms
里的DataGrid的绑定了数据库bit字段的列默认显示的CheckBox换成“男”和“女”,也就是 说怎么样像ASP.NET的模板列那样可以自定义。
·
2015-11-02 14:34
datagrid
在Infopath中用C#创建复合控件
For example, there is no such control like the NumericUpDown control in
WinForms
.
·
2015-11-02 14:48
Path
WPF工具开发: 第三库选择
PropertyGrid
Winforms
's PropertyGrid 非WPF原生支持, 需要借助WinFormHost 风格不可定制
·
2015-11-02 13:45
WPF
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他