简易贪吃蛇 计应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;
蛇
标签:Canvas,gs,food,192,贪吃蛇,sn,new,st,计应 来源: https://www.cnblogs.com/cc12/p/14800515.html