当前位置: 首页>>代码示例>>C#>>正文


C# Core.NewGame方法代码示例

本文整理汇总了C#中Core.NewGame方法的典型用法代码示例。如果您正苦于以下问题:C# Core.NewGame方法的具体用法?C# Core.NewGame怎么用?C# Core.NewGame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Core的用法示例。


在下文中一共展示了Core.NewGame方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Form1

        public Form1()
        {
            InitializeComponent();
            core = new Core();
            core.onWin += Win;
            core.NewGame(Core.Mode.Easy);
            stepsLabel.Text = core.steps.ToString();
            bgc = new BufferedGraphicsContext();

            fon = new Bitmap(567, 567);
            for (int i = 0; i < 567; i++)
                for (int j = 0; j < 567; j++)
                    fon.SetPixel(i, j, Color.FromArgb(
                        0,
                        102 + (int)Math.Round(Math.Sqrt((i - 283.5) * (i - 283.5) + (283.5 - j) * (283.5 - j)) * (-46) / 283.5),
                        204 + (int)Math.Round(Math.Sqrt((i - 283.5) * (i - 283.5) + (283.5 - j) * (283.5 - j)) * (-97) / 283.5)
                        ));

            pc = new Bitmap(63, 63);
            graphics = Graphics.FromImage(pc);
            graphics.DrawImage(Properties.Resources.PC, 0, 0, 63, 63);
            pcNet = new Bitmap(200, 200);
            graphics = Graphics.FromImage(pcNet);
            graphics.DrawImage(Properties.Resources.PCNet, 0, 0, 200, 200);
            server = new Bitmap(200, 200);
            graphics = Graphics.FromImage(server);
            graphics.DrawImage(Properties.Resources.Server, 0, 0, 200, 200);
            blockBrush = new Pen(Color.FromArgb(153, 0, 0, 0)).Brush;
            cursorBrush = new Pen(Color.FromArgb(51, 255, 255, 255)).Brush;
            menu = new Bitmap(cell9, cell9);
            menuPictureBox.Image = menu;

            bitmap = new Bitmap(cell9, cell9);
            graphics = Graphics.FromImage(bitmap);

            bg = bgc.Allocate(fieldPictureBox.CreateGraphics(), fieldPictureBox.ClientRectangle);
            ClientSize = new Size(567, 597);
            stepsLabel.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
            menuButton.Anchor = AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Right;
            timerLabel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

            ClientSize = new Size(cell5, cell5 + 30);

            Draw();
        }
开发者ID:vladislav-plotnikoff,项目名称:Connect,代码行数:45,代码来源:Form1.cs


注:本文中的Core.NewGame方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。