Created
October 17, 2012 14:35
-
-
Save masaru-b-cl/3905845 to your computer and use it in GitHub Desktop.
MainWindowViewModel - Brush
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Media; | |
namespace WpfApplication1 | |
{ | |
public class MainWindowViewModel | |
{ | |
public Brush Background { get; private set; } | |
public MainWindowViewModel() | |
{ | |
Background = new SolidColorBrush(Colors.Aqua); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment