Beispiel #1
0
        }                               // Change to Style

        public ZuneViewDevice(ZuneViewType type, Brush fill)
        {
            Type = type;
            Fill = fill;
        }
Beispiel #2
0
 public ZuneViewDevice(string name, ZuneViewType type, Brush fill)
 {
     Name = name;
     Type = type;
     Fill = fill;
 }
Beispiel #3
0
 private void AddDevice(string name, ZuneViewType type, Color colour)
 {
     _devices.Add(new ZuneViewDevice(name, type, new SolidColorBrush(colour)));
 }