教程集 www.jiaochengji.com
教程集 >  操作系统  >  windows  >  正文 提供一个测试用的“平面按纽”控件代码!如想看结果,请自行编译

提供一个测试用的“平面按纽”控件代码!如想看结果,请自行编译

发布时间:2019-12-13   编辑:jiaochengji.com
教程集为您提供提供一个测试用的“平面按纽”控件代码!如想看结果,请自行编译等资源,欢迎您收藏本站,我们将为您提供最新的提供一个测试用的“平面按纽”控件代码!如想看结果,请自行编译资源
环境:win2000 server 、DOTNET beta2
本程序旨在练习,请朋友们多指教
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace SohoContral
{
    /// <summary>
    /// 定义平面格式的按扭
    /// </summary>
    public class FlatButton : System.Windows.Forms.UserControl
    {
        private string _text="";           //定义按纽文字
        public string Text{
       set{_text=value;}
       get{return _text;}
        }
        
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Label label1;
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;
        public FlatButton()

您可能感兴趣的文章:
提供一个测试用的“平面按纽”控件代码!如想看结果,请自行编译
Go 笔记之 Go 命令快速体验
用 .NET 开发的轻量级 UI 测试自动化
龙芯平台构建Go语言环境指南
从零开始学习GO语言-搭建Go语言开发环境-快速开发入门第一个小程序
php性能看什么
持续集成与持续部署宝典Part 1:将构建环境容器化
小米技术出品——走进Golang之编译器原理
go mockweb接口_golang 单元测试(gotests、mockery自动生成)
php语言用什么软件写

[关闭]
~ ~