zoukankan      html  css  js  c++  java
  • Inno Setup进阶之文本及事件(四)

    标签文本代码示例

        var lable1:TLabel;
        label1:= TLabel.Create(WizardForm);
        with label1 do
        begin
        Parent := WizardForm;
        Caption := '请收藏博客内容,希望对你有所帮助'; // 文本内容
        Font.Name:='宋体'                           // 字体
        Transparent := TRUE;                       
        SetBounds(45,18,199,58);                    // 位置 
        Font.Size:=24;                              // 大小
        Font.Color:=$000000ff;                      // 颜色 #abgr == #FF0000
        Cursor := crHand;                           // 鼠标手型
    
        OnClick:=@customClick; 
          
        end;
    

    输入文本代码示例

    var pathEdit:tedit;
        pathEdit:= TEdit.Create(WizardForm);
    
      with pathEdit do
      begin
        Parent := WizardForm;
        text :=WizardForm.DirEdit.text;
        Font.Name:='宋体'
        BorderStyle:=bsNone;
        SetBounds(60,385,440,15)
        OnChange:=@pathEditChange;
        Color := $00FFE2D0
        TabStop :=false;
      end;
    

    按钮代码示例

      var btn1:TButton;
      btn1:= TButton.create(WizardForm);
      with btn1 do
      begin
          Parent := WizardForm;
          Caption := '点击';
          Font.Name:='宋体'
          SetBounds(145,58,199,58);
          Font.Size:=16;
          Width:=100;
          Height:=25;
          Font.Color:=$0000ffff;
          Cursor := crHand;
      end;
    

    其他form控件就不一一列举代码,其他控件如下

    TForm ,TLabel , TEdit , TComboBox , TButton  , TCheckBox , TRadioButton , TListBox , TBevel , TPanel ,TPasswordEdit ,TFolderTreeView ,TBitmapImage ,TNewNotebook 
    
  • 相关阅读:
    如何实现分页功能
    学习Python的心路历程
    Python基础---协程
    Python基础---线程
    Python基础---python中的进程操作
    Python基础---进程相关基础
    Python基础---并发编程(操作系统的发展史)
    Python基础---网络编程3
    Python基础---网络编程2
    Python基础---面向对象3
  • 原文地址:https://www.cnblogs.com/pengsn/p/13424435.html
Copyright © 2011-2022 走看看