代码搜索:控件交互
找到约 10,000 项符合「控件交互」的源代码
代码结果 10,000
www.eeworm.com/read/103038/15748355
txt webbrwse控件.txt
增加Com组件Microsoft 浏览器
int Zero=0;
object OZero=Zero;
string Str="";
object OStr=Str;
axWebBrowser1.Navigate("http://localhost/myasp",ref OZero,ref OStr,ref OStr,ref OStr);
www.eeworm.com/read/103038/15748422
txt 清空控件.txt
string mytext;
foreach(Control co in this.Controls)
{
mytext=co.GetType().ToString();
if(mytext=="System.Windows.Forms.TextBox")
((TextBox)co).Text="";
}
www.eeworm.com/read/375485/9358688
ppt 人机交互1.ppt
www.eeworm.com/read/375485/9358694
ppt 人机交互2.ppt
www.eeworm.com/read/441945/7662441
swf 使用httpservice交互-profile.swf
www.eeworm.com/read/441945/7662442
swf 使用httpservice交互-debug.swf
www.eeworm.com/read/122653/14677578
txt web页面信息的交互.txt
要实现动态交互,必须掌握有关窗体对象(Form)和框架对象(Frames)更为复杂的知识。
一、窗体基础知识
窗体对象可以使设计人员能用窗体中不同的元素与客户机用户相交互,而用不着在之前首先进行数据输入,就可以实现动态改变Web文档的行为。
1、什么是窗体对象
窗体(Form):它构成了Web页面的基本元素。通常一个Web页面有一个窗体或几个窗体,使用Forms ...