2019년 8월 30일 금요일

[C#/Mono] GroupBox


wGroupBox.cs



using System;
using System.Drawing;
using System.Windows.Forms;

public class WGroupBox : WCtrl
{
 GroupBox gbox;
 
 public WGroupBox(string text, int fontSize) {
  ctrl = gbox = new GroupBox();
  if( fontSize > 0 ) {
   SetFontSize(fontSize);
  }  
  gbox.Text = "group";  
  gbox.Margin = new Padding(20);
  gbox.Padding = new Padding(20);
  anchorAll();
  dockFill();  
 }
 public WGroupBox(string text) : this(text,0) {}
 
}

댓글 없음:

댓글 쓰기