Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created October 17, 2012 14:28
Show Gist options
  • Save masaru-b-cl/3905805 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/3905805 to your computer and use it in GitHub Desktop.
MainWindowViewModel - Color
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 Color Background { get; private set; }
public MainWindowViewModel()
{
Background = Colors.Aqua;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment