示例#1
0
        public frmAcesso()
        {
            InitializeComponent();

            RoundedForm roundedForm = new RoundedForm(this);

            AppDesktop.startup();
        }
示例#2
0
        public frmBase()
        {
            InitializeComponent();
            this.FormBorderStyle = FormBorderStyle.None;

            RoundedForm roundedForm = new RoundedForm(this, pnlBackground);

            //Region = System.Drawing.Region.FromHrgn(CreateRoundRectRgn(0, 0, Width - 3, Height - 3, 20, 20));
            //pnlBackground.Region = System.Drawing.Region.FromHrgn(CreateRoundRectRgn(0, 0, pnlBackground.Width, pnlBackground.Height, 20, 20));

            UtilChangePanel.MudarConteudo(pnlConteudo, new uctBase());

            lblNome.Text          = AppDesktop.ActualEmployee.FirstName + " " + AppDesktop.ActualEmployee.LastName;
            picProfilePhoto.Image = UtilImage.ByteToImage(AppDesktop.ActualArchive.Blob);
        }
示例#3
0
 public frmServer()
 {
     InitializeComponent();
     RoundedForm roundedForm = new RoundedForm(this);
 }
 public FrmCyberTrack()
 {
     InitializeComponent();
     uiButton1.Focus();
     RoundedForm roundedForm = new RoundedForm(this);
 }
示例#5
0
 public frmInstaller()
 {
     InitializeComponent();
     RoundedForm roundedForm = new RoundedForm(this, pnlBackground);
 }