Exemplo n.º 1
0
		public WindowBaseView(WindowBaseViewModel model)
		{
			ContentRendered += new EventHandler(WindowBaseView_ContentRendered);
			if (model != null)
			{
				_model = model;
				_model.SetSurface(this);
				DataContext = _model;
			}
			InitializeComponent();
			Loaded += (s, e) => MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
		}