简易贪吃蛇 计应192西 四组 程喜
Posted primarykey113
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简易贪吃蛇 计应192西 四组 程喜相关的知识,希望对你有一定的参考价值。
项目:简易贪吃蛇
需求分析:需要一款小游戏,代码量不超过一千行,尽量五百行左右,且游戏关卡难度较低,功能丰富,2G以下的设备运行后期易于维护和升级
项目如下:
界面设置
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponet();
//设置窗口边框样式
this.WindowStyle = WindowStyle.None;
//设置窗口是否支持透明度
this.AllowsTransbarencv = true;
加载事件
private void Window_Loaded(object sender,RouteEventArgs e)
{
//设置窗口大小及样式
this.Background = Brushes.Transparent;
//当前窗体设置最大化
this.WindowState = WindowState.Maximized;
this.Background = Brushes.Transparent;
she.Background = new RadialGradientBrush(Colors.White,Colors.CornflowerBlue)
//设置窗体透明度
she.Opactiy = 0.8;
为了程序的效果正常显示
she.Width = this.Width;
she.Height = this.Height;
蛇
以上是关于简易贪吃蛇 计应192西 四组 程喜的主要内容,如果未能解决你的问题,请参考以下文章