private void barButtonWaypoint_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            WaypointForm xform1 = new WaypointForm(_FlexSys)
            {
            };

            xform1.Show();
        }
Exemple #2
0
        public void Show(FlexInterfaces.Core.ICoreSys sys)
        {
            WaypointForm xform1 = new WaypointForm(sys);

            xform1.ShowDialog();
        }