public SplashWindow()
 {
     InitializeComponent();
     showDelegate = new ShowDelegate(this.showText);
     hideDelegate = new HideDelegate(this.hideText);
     Showboard = this.Resources["showStoryBoard"] as Storyboard;
     Hideboard = this.Resources["HideStoryBoard"] as Storyboard;
 }
 public BluEnergyXDesignerStart()
 {
     InitializeComponent();
     showDelegate = new ShowDelegate(this.showText);
     hideDelegate = new HideDelegate(this.hideText);
     Showboard = this.Resources["showStoryBoard"] as Storyboard;
     Hideboard = this.Resources["HideStoryBoard"] as Storyboard;
 
 }
        public Introduccion()
        {
            InitializeComponent();

            showDelegate = new ShowDelegate(this.showText);
            hideDelegate = new HideDelegate(this.hideText);
            Showboard    = this.Resources["showStoryBoard"] as Storyboard;
            Hideboard    = this.Resources["HideStoryBoard"] as Storyboard;
        }
示例#4
0
 public SplashWindow(HauptFenster mw)
 {
     _mw = mw;
     InitializeComponent();
     showDelegate = new ShowDelegate(this.showText);
     hideDelegate = new HideDelegate(this.hideText);
     Showboard    = this.Resources["showStoryBoard"] as Storyboard;
     Hideboard    = this.Resources["HideStoryBoard"] as Storyboard;
 }
示例#5
0
 public SplashWindow()
 {
     InitializeComponent();
     showDelegate  = new ShowDelegate(this.showText);
     hideDelegate  = new HideDelegate(this.hideText);
     Showboard     = this.Resources["showStoryBoard"] as Storyboard;
     Hideboard     = this.Resources["HideStoryBoard"] as Storyboard;
     loadingThread = new Thread(load);
     loadingThread.Start();
 }
示例#6
0
        public SplashWindow()
        {
            InitializeComponent();

            string DriveApplicationVersion = bycar3.Properties.Settings.Default.DriveApplicationVersion;
            string DriveDatabaseVersion = bycar3.Properties.Settings.Default.DriveDatabaseVersion;
            edtVersion.Text = "версия " + DriveApplicationVersion + "-" + DriveDatabaseVersion;
            showDelegate = new ShowDelegate(this.showText);
            hideDelegate = new HideDelegate(this.hideText);
            Showboard = this.Resources["showStoryBoard"] as Storyboard;
            Hideboard = this.Resources["HideStoryBoard"] as Storyboard;
        }
示例#7
0
 internal MazeViewer(MazeDomain maze)
 {
     InitializeComponent();
     m_mdMaze            = maze;
     Size                = new Size(m_mdMaze.Width * SCALE + 50, 100 + (m_mdMaze.Height + 3) * SCALE);
     MazePictureBox.Size = new Size(m_mdMaze.Width * SCALE, (m_mdMaze.Height + 3) * SCALE);
     RefreshForm         = new RefreshDelegate(RefreshFormMethod);
     HideForm            = new HideDelegate(HideFormMethod);
     CurrentState        = null;
     SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor | ControlStyles.AllPaintingInWmPaint, true);
     Active             = false;
     m_bThreadRunning   = false;
     CurretnUpdateState = null;
 }
示例#8
0
        public SplashWindow()
        {
            InitializeComponent();


            string DriveApplicationVersion = bycar3.Properties.Settings.Default.DriveApplicationVersion;
            string DriveDatabaseVersion    = bycar3.Properties.Settings.Default.DriveDatabaseVersion;

            edtVersion.Text = "версия " + DriveApplicationVersion + "-" + DriveDatabaseVersion;
            showDelegate    = new ShowDelegate(this.showText);
            hideDelegate    = new HideDelegate(this.hideText);
            Showboard       = this.Resources["showStoryBoard"] as Storyboard;
            Hideboard       = this.Resources["HideStoryBoard"] as Storyboard;
        }
 internal RaceViewer(RaceTrack rt)
 {
     InitializeComponent();
     m_rtTrack = rt;
     Size = new Size(m_rtTrack.Width * SCALE + 50, 100 + m_rtTrack.Height * SCALE);
     TrackPictureBox.Size = new Size(m_rtTrack.Width * SCALE, m_rtTrack.Height * SCALE);
     RefreshForm = new RefreshDelegate(RefreshFormMethod);
     HideForm = new HideDelegate(HideFormMethod);
     CarState = null;
     StateValues = null;
     SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor | ControlStyles.AllPaintingInWmPaint, true);
     Active = false;
     m_bThreadRunning = false;
     CurretnUpdateState = null;
 }
示例#10
0
 internal RaceViewer(RaceTrack rt)
 {
     InitializeComponent();
     m_rtTrack            = rt;
     Size                 = new Size(m_rtTrack.Width * SCALE + 50, 100 + m_rtTrack.Height * SCALE);
     TrackPictureBox.Size = new Size(m_rtTrack.Width * SCALE, m_rtTrack.Height * SCALE);
     RefreshForm          = new RefreshDelegate(RefreshFormMethod);
     HideForm             = new HideDelegate(HideFormMethod);
     CarState             = null;
     StateValues          = null;
     SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor | ControlStyles.AllPaintingInWmPaint, true);
     Active             = false;
     m_bThreadRunning   = false;
     CurretnUpdateState = null;
 }