标题:问一下 :创建窗体和添加文本框
取消只看楼主
yl19860102
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2009-9-9
结帖率:50%
已结贴  问题点数:20 回复次数:0 
问一下 :创建窗体和添加文本框
using System;
using System.Collections.Generic;
using System.Windows.Forms;
 
    static class Program
     {
        

            public class Form1 :Form
             {
                TextBox tTempFah = new TextBox();//创建一个文本框
            
              
               public Form1()
               {
                 this.SetClientSizeCore(300, 200);//设置窗体工作区的大小
                 this.Text =" +C -> +F / +F -> +C ";//定义窗体的标题
                 this.StartPosition = FormStartPosition.CenterScreen;//窗体显示加载时显示在屏幕中央;
                 this.HelpButton = false;//窗体没帮助菜单
                 this.MaximizeBox = false;//窗体最大化按钮不可用
                    
                }
            }
          static void Main()
           {

              Application.Run(new Form1());//执行Form1这个函数
            }
     }
我想设置这个文本框大小为(40,20),并且把它放在窗体相对坐标的(50,30)的地方,请问如何补充以上的代码?谢谢,小弟在线======================
搜索更多相关主题的帖子: 窗体 文本 
2009-09-10 13:08



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-285313-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.109188 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved