• 大小: 0.51M
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 窗体  

资源简介

C# 浮动窗体实现(自定义弹出窗口)

资源截图

代码片段和文件信息

using AhDung.PopupDemos;
using System;
using System.Drawing;
using System.Windows.Forms;

namespace AhDung
{
    public class ColorPicker : ComboBox
    {
        readonly ColorDemo cp;

        public Color SelectedColor
        {
            get { return this.BackColor; }
        }

        public ColorPicker()
        {
            cp = new ColorDemo
            {
                BorderType = Borderstyle.FixedSingle
            };

            this.DropDownstyle = ComboBoxstyle.DropDownList;
            this.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.DropDownHeight = 1;
        }

        protected override void onclick(EventArgs e)
        {
            if (cp.ShowDialog(this) != DialogResult.OK) { return; }

            t

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6187  2015-08-21 17:52  FmChild.Designer.cs

     文件       7267  2015-08-21 17:52  FmChild.resx

     文件       7680  2015-08-23 12:51  FmMDI.cs

     文件      22304  2015-08-21 17:52  FmMDI.Designer.cs

     文件       9452  2015-08-21 17:52  FmMDI.resx

     文件       5371  2015-08-23 17:09  PopupApp.csproj

     文件        432  2015-08-23 14:15  Program.cs

     文件     145920  2015-08-23 17:09  bin\Debug\PopupApp.exe

     文件     142848  2015-08-23 17:09  bin\Debug\PopupApp.pdb

     文件      11608  2015-08-23 17:10  bin\Debug\PopupApp.vshost.exe

     文件       1812  2015-08-21 17:11  FloatDemos\CalcDemo.cs

     文件      11765  2015-08-19 19:17  FloatDemos\CalcDemo.Designer.cs

     文件       5817  2015-08-19 19:09  FloatDemos\CalcDemo.resx

     文件        561  2015-08-21 17:54  FloatDemos\ColorDemo.cs

     文件      13503  2015-08-21 17:54  FloatDemos\ColorDemo.Designer.cs

     文件       5817  2015-08-21 15:18  FloatDemos\ColorDemo.resx

     文件      21849  2015-08-23 15:42  FloatDemos\Floatlayerbase.cs

     文件        439  2015-08-23 15:40  FloatDemos\InputDemo.cs

     文件       7464  2015-08-23 15:40  FloatDemos\InputDemo.Designer.cs

     文件       5817  2015-08-23 15:40  FloatDemos\InputDemo.resx

     文件        427  2015-08-23 17:09  FloatDemos\NumInputDemo.cs

     文件       3273  2015-08-23 14:08  FloatDemos\NumInputDemo.Designer.cs

     文件       5817  2015-08-23 14:08  FloatDemos\NumInputDemo.resx

     文件        436  2015-08-21 17:11  FloatDemos\TipDemo.cs

     文件       4449  2015-08-19 19:19  FloatDemos\TipDemo.Designer.cs

     文件     149166  2015-08-19 19:09  FloatDemos\TipDemo.resx

     文件       1126  2015-08-23 17:09  obj\x86\Debug\AhDung.FmChild.resources

     文件       2381  2015-08-23 17:09  obj\x86\Debug\AhDung.FmMDI.resources

     文件        180  2015-08-23 17:09  obj\x86\Debug\AhDung.PopupDemos.ColorDemo.resources

     文件        180  2015-08-21 17:36  obj\x86\Debug\AhDung.PopupDemos.ColorPopDemo.resources

............此处省略33个文件信息

评论

共有 条评论