zoukankan
html css js c++ java
C# 遍历窗体上控件方法
foreach (Control c in this.Controls)
{
if (c is TextBox)
{
((TextBox)c).Clear();
}
else if(c is Label)
{
~~~~~~
}
}
作者:
wpf之家
出处:
http://www.cnblogs.com/wpf123
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
查看全文
相关阅读:
SQL Server 2008 Service Broker
微软官网推Windows 7学习材料
ASP.NET MVC Code and Slides for Best of Mix 09 Presentation
DLINQ:SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM
SQL Server 2008 Developer Training Kit
TheBeerHouseASP.NET MVC范例
SQL Server 2008 SP1
LINQ: There is already an open DataReader associated with this Command which must be closed first
Quartz.NET 1.0.1发布
K2 Blackpearl的Outcomes Actions和Line Rule
原文地址:https://www.cnblogs.com/wpf123/p/2347361.html
最新文章
如何禁止IIS在C:\Windows\System32\LogFiles\HTTPERR中生成日志文件
微软裁员和.NET的开源
Professional K2 blackpearl
VsDoc for jQuery
K2中的任务代理
编辑器CKEditor
Windows SharePoint Services 3.0 Service Pack 2
如何启动“Microsoft File Transfer Manager”
Windows 7 升级顾问
IIRF(Ionics Isapi Rewrite Filt er)实现在IIS 5/6上重写Url
热门文章
ASP.NET MVC Action Filters
代码生成新选择T4模板引擎
冗余代码检查工具Simian
K2 Blackpearl 0807更新流程数据数据要求具有流程管理员权限
ASP.NET MVC Training Kit发布了
工作流、业务流程管理和SOA
ASP.NET开发人员需要学习ASP.NET MVC么?
Visual Studio 2010 and .NET Framework 4 Training Kit
浏览器平台:Internet Explorer 8
Lightweight Test Automation Framework之旅
Copyright © 2011-2022 走看看