Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SDL2UltravioletPlatform"/> class.
 /// </summary>
 /// <param name="uv">The Ultraviolet context.</param>
 /// <param name="uvconfig">The Ultraviolet Framework's configuration settings.</param>
 /// <param name="sdlconfig">The SDL2 platform configuration settings.</param>
 public SDL2UltravioletPlatform(UltravioletContext uv, UltravioletConfiguration uvconfig, SDL2PlatformConfiguration sdlconfig)
     : base(uv)
 {
     this.clipboard         = ClipboardService.Create();
     this.messageBoxService = MessageBoxService.Create();
     this.windows           = new SDL2UltravioletWindowInfoOpenGL(uv, uvconfig, sdlconfig);
     this.displays          = new SDL2UltravioletDisplayInfo(uv);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SDL2UltravioletPlatform"/> class.
 /// </summary>
 /// <param name="uv">The Ultraviolet context.</param>
 /// <param name="configuration">The Ultraviolet Framework's configuration settings.</param>
 public SDL2UltravioletPlatform(UltravioletContext uv, UltravioletConfiguration configuration)
     : base(uv)
 {
     this.clipboard         = ClipboardService.Create();
     this.messageBoxService = MessageBoxService.Create();
     this.windows           = new SDL2UltravioletWindowInfoOpenGL(uv, configuration);
     this.displays          = new SDL2UltravioletDisplayInfo(uv);
     this.isCursorVisible   = SDL_ShowCursor(SDL_QUERY) != 0;
 }
Пример #3
0
 void RegisterServices()
 {
     mvvmContext.RegisterService(MessageBoxService.Create(DefaultMessageBoxServiceType.XtraMessageBox));
 }