码迷,mamicode.com
首页 > 其他好文 > 详细

测试窗口

时间:2017-04-12 23:09:28      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:job   rms   alt   bugs   窗口   win   mod   class   click   

技术分享
 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Threading.Tasks;
 9 using System.Windows.Forms;
10 
11 namespace WindowsFormsApplication2
12 {
13     public partial class Form3 : Form
14     {
15         public Form3()
16         {
17             InitializeComponent();
18         }
19         //接收主窗口
20         public Form1 fr;
21         public int index;
22 
23         private void button1_Click(object sender, EventArgs e)
24         {
25             //把父类转化为子类
26             var test = (CodeJob)(fr.la[index]);
27             test.CodingLines = int.Parse(textBox1.Text.Trim());
28             test.Bugs = int.Parse(textBox2.Text.Trim());
29             test.WorkDay = int.Parse(textBox3.Text.Trim());
30         }
31     }
32 }
View Code

 

测试窗口

标签:job   rms   alt   bugs   窗口   win   mod   class   click   

原文地址:http://www.cnblogs.com/nancheng/p/6701723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!