Exemplo n.º 1
0
        private void barButtonSysfile_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            SysfileForm xform1 = new SysfileForm(_FlexSys)
            {
            };

            xform1.Show();
        }
Exemplo n.º 2
0
        private void barButtonSysfile_ItemClick(object sender, ItemClickEventArgs e)
        {
            SysfileForm xform1 = new SysfileForm(_FlexSys)
            {
                MdiParent = this
            };

            xform1.Show();
        }
Exemplo n.º 3
0
        public void Show(FlexInterfaces.Core.ICoreSys sys)
        {
            SysfileForm xform1 = new SysfileForm(sys);

            xform1.ShowDialog();
        }