| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 445 人关注过本帖
标题:c# 求解为什么在输出时等级文本框永远只有一个
取消只看楼主 加入收藏
编程要有思想
Rank: 1
等 级:新手上路
威 望:1
帖 子:28
专家分:1
注 册:2013-10-10
结帖率:0
收藏
已结贴  问题点数:10 回复次数:0 
c# 求解为什么在输出时等级文本框永远只有一个
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 多分支结构
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

      


        private void button1_Click(object sender, EventArgs e)
        {
            int score=96;
           
            if (score<60)
            {
                this.textBox2.Text = "小笨蛋";

            }
               
         /*   else if (score <=80)
            {
                this.textBox2.Text = "良好";
            }
            else if (score<=90)
            {
                this.textBox2.Text = "优秀";
            }*/

            else
            {
                this.textBox2.Text = "你真棒";
            }
            String score1 = score.ToString();
            score1 = this.textBox2.Text;


        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }



    }


}
搜索更多相关主题的帖子: private public 文本框 
2013-10-14 13:41
快速回复:c# 求解为什么在输出时等级文本框永远只有一个
数据加载中...
 
   



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

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