public StealGameEditorControl(StealGameCommand command)
        {
            InitializeComponent();

            this.existingCommand = command;
            this.viewModel       = new StealGameEditorControlViewModel(command);
        }
        public StealGameEditorControl(UserCurrencyViewModel currency)
        {
            InitializeComponent();

            this.viewModel = new StealGameEditorControlViewModel(currency);
        }