2017年10月19日

通讯录表设计

摘要: 公告表 联系人表 用户表 阅读全文

posted @ 2017-10-19 22:59 YuJiaJia 阅读(473) 评论(0) 推荐(0) 编辑

2017年10月12日

TEST1

摘要: TEST1-2 Console.WriteLine("请输入一个正整数"); int n =Convert.ToInt32( Console.ReadLine()); if(n%2==0) { for(int i=2;i<=n/2;i++) if (n % i == 0) Console.Write 阅读全文

posted @ 2017-10-12 12:26 YuJiaJia 阅读(472) 评论(0) 推荐(0) 编辑

2017年9月24日

c#练习四单元总结

摘要: test4-1 在numericUpDown1中 trackBar1.Value =(int) numericUpDown1.Value; 在trackBar1中 numericUpDown1.Value = trackBar1.Value; test4-2 在红绿蓝按钮里执行语句 this.Bac 阅读全文

posted @ 2017-09-24 23:06 YuJiaJia 阅读(168) 评论(0) 推荐(0) 编辑

2017年9月21日

窗体控件应用总结(1)

摘要: 1.如果想要通过点击菜单控件或工具栏控件达到是窗体变大变小的功能首先双击控件进入代码编写 绑定事件 this.Size = new Size(600, 400);//(int x,int y)设定窗体大小 2.想要使状态栏呈现当前窗体是大还是小 sta1.Text = "大窗体";//状态栏name 阅读全文

posted @ 2017-09-21 22:51 YuJiaJia 阅读(255) 评论(0) 推荐(0) 编辑

2017年9月18日

.NET(c#理解)

摘要: .net应用程序编译后是一种中间语言(MSIL)不需要考虑运行平台的问题,实现了平台无关性同时还支持语言的互操作性 c#是一种开发.net框架应用程序的语言, c#语言特点:1不区分大小写2变量需要先定义后使用。3声明变量必赋值 作用域:在c#中作用域大小就像是局部变量和全局变量的区别,好比一个变量 阅读全文

posted @ 2017-09-18 21:58 YuJiaJia 阅读(237) 评论(0) 推荐(0) 编辑

2017年9月11日

test2-11

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Test2_11{ class Animal { pri 阅读全文

posted @ 2017-09-11 21:55 YuJiaJia 阅读(106) 评论(0) 推荐(0) 编辑

test1-1

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace SECOND_C{ class Program { st 阅读全文

posted @ 2017-09-11 21:08 YuJiaJia 阅读(176) 评论(0) 推荐(0) 编辑

uwp

摘要: 阅读全文

posted @ 2017-09-11 20:47 YuJiaJia 阅读(111) 评论(0) 推荐(0) 编辑

test2-1

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace test2_11{ class Animal//基类 { 阅读全文

posted @ 2017-09-11 20:39 YuJiaJia 阅读(104) 评论(0) 推荐(0) 编辑

test1-11new

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Test1_11new{ class Program { 阅读全文

posted @ 2017-09-11 19:33 YuJiaJia 阅读(177) 评论(0) 推荐(0) 编辑

导航