1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using PixiEditor.Views;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace PixiEditor.Models
- {
- public class NewFileDialog : CustomDialog
- {
- private int _width;
- public int Width
- {
- get { return _width; }
- set { if (_width != value) { _width = value; RaisePropertyChanged("Width"); } }
- }
- private int _height;
- public int Height
- {
- get { return _height; }
- set { if (_height != value) { _height = value; RaisePropertyChanged("Height"); } }
- }
- public override bool ShowDialog()
- {
- Window popup = new NewFilePopup();
- popup.ShowDialog();
- Height = (popup as NewFilePopup).FileHeight;
- Width = (popup as NewFilePopup).FileWidth;
- return (bool)popup.DialogResult;
- }
- }
- }
|