/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2014, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:建立超链接
* 作 者: 李莉
* 完成日期: 2016 年 05 月01 日
* 版 本 号: V1.0
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:设计如图实验8-3所示的窗体。要求:窗体启动后自动位于屏幕中央;窗体大小不可调;窗体背景色为白色;窗体标题为“我的窗体实验”;窗体上有两个标签,其中一个是链接标签,标签字体为宋体16号;单击该链接可以打开烟台大学的主页;单击“结束”按钮程序即可结束
* 程序输出:
* 程序头部的注释结束
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.CenterToScreen();//设置窗口处于屏幕中央
this.FormBorde
C#——窗体实验
最新推荐文章于 2022-10-01 14:19:06 发布
本文介绍了使用C#进行窗体编程的实验过程,详细展示了如何创建和运行一个窗体应用,通过实例解析了相关的核心概念和技术。
摘要由CSDN通过智能技术生成