コード例 #1
0
ファイル: AttemptBall.cs プロジェクト: LagManos/Enigma
        public AttemptBall(BitmapImage source, int size, MainWindow wnd)
        {
            this.Size = size;
            this.wnd = wnd;

            this.SetImage(source, size, true);
        }
コード例 #2
0
ファイル: AnswerBall.cs プロジェクト: LagManos/Enigma
        public AnswerBall(BitmapImage source, int size, MainWindow wnd)
        {
            this.Size = size;
            this.wnd = wnd;

            this.SetImage(source, size, false);
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: ruinalmeida/Zebra
 public static void Main(string[] args)
 {
     Application.Init ();
     MainWindow win = new MainWindow ();
     win.Show ();
     Application.Run ();
 }
コード例 #4
0
ファイル: App.xaml.cs プロジェクト: LagManos/Enigma
 private void Application_startup(object sender, StartupEventArgs e)
 {
     //THE MAIN METHOD ###########
     MainWindow wnd = new MainWindow();
     wnd.Show();
     Game game = new Game(wnd);
     GameManager gManager = new GameManager(game);
     wnd.game = game;
     wnd.GameManager = gManager;
 }
コード例 #5
0
ファイル: CodeBall.cs プロジェクト: LagManos/Enigma
        public CodeBall(BitmapImage source, int size, MainWindow wnd, BitmapImage hidden = null)
        {
            this.Size = size;
            this.wnd = wnd;
            HiddenImage = new OwnImage(false);
            HiddenImage.Source = hidden;
            HiddenImage.Width = Size;
            HiddenImage.Height = Size;

            this.SetImage(source, size, false);
        }