zoukankan      html  css  js  c++  java
  • 记DotNetBar换肤

    界面:

      comboBoxEx  选择皮肤

      buttonX    测试指定皮肤

      styleManager

    后台代码:

      初始化 :  

          this.EnableGlass = false; 设置窗体效果 不设置 依然显示winform效果

      Load事件:

            string[] _styles = Enum.GetNames(typeof(eStyle));

                  comboBoxEx1.Items.AddRange(_styles);

          把皮肤样式加载到下拉列表框

      comboBoxEx1_SelectedIndexChanged 事件 样式改变事件

          

          eStyle style;

                if (!Enum.TryParse<eStyle>(comboBoxEx1.Text, out style))      

               {                 return;             }

                styleManager1.ManagerStyle = style;

  • 相关阅读:
    07 selenium模块基本使用
    06 高性能异步爬虫
    05 request高级操作
    04 验证码识别
    03 数据解析
    02 requests模块
    01 爬虫简介
    Get和Post的正解
    pytoch之 encoder,decoder
    pytorch之 RNN 参数解释
  • 原文地址:https://www.cnblogs.com/xie4529298/p/DotNetBar_0001.html
Copyright © 2011-2022 走看看