예제 #1
0
파일: App.cs 프로젝트: wbgl/Samples
        public override void Draw(TimeSpan elapsedTime)
        {
            game.DrawFrame(elapsedTime);

            if (!this.splashScreenReplaced)
            {
                this.splashScreenReplaced = true;
                this.SetTheme(Android.Resource.Style.ThemeNoTitleBarFullScreen);
                this.FindViewById(Resource.Id.root).Visibility = ViewStates.Visible;
            }
        }
예제 #2
0
 public override void Draw(TimeSpan gameTime)
 {
     game.DrawFrame(gameTime);
 }