Search Results

1
vote

How to Set Grid Column MaxWidth depending on Window or Screen Size in XAML

I think the XAML-only approach is somewhat circuitous, but here is a way to do it. <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:sys="clr-n …
1
vote

why not partial class to build the ViewModel in MVVM pattern?

In some cases this may be useful, but generally the ViewModel (or PresentationModel) has a different set of concerns that would muddle the rest of the model. For example, imagine that you h …