Esempio n. 1
0
 public ShowLayerEvent(ShowEvent srcEvent, PropertyType property) :
     base(srcEvent)
 {
     if (property.Key == "Bckg")
     {
         _name = "Background";
     }
     else
     {
         Console.WriteLine("ShowLayerEvent: " + property.Key);
         _name = "fixme!";
     }
 }
Esempio n. 2
0
 public ShowLayerEvent(ShowEvent srcEvent, PropertyType property)
     : base(srcEvent)
 {
     if (property.Key == "Bckg")
     {
       _name = "Background";
     }
       else
     {
       Console.WriteLine("ShowLayerEvent: " + property.Key);
       _name = "fixme!";
     }
 }
Esempio n. 3
0
 public ShowLayerEvent(ShowEvent srcEvent, string name) : base(srcEvent)
 {
     _name = name;
 }
Esempio n. 4
0
 public ShowLayerEvent(ShowEvent srcEvent) : base(srcEvent)
 {
     _layer = SelectedLayer;
 }
Esempio n. 5
0
 public ShowChannelEvent(ShowEvent srcEvent, string channel) :
     base(srcEvent)
 {
     _channel = channel;
 }
Esempio n. 6
0
 public ShowChannelEvent(ShowEvent srcEvent, string channel)
     : base(srcEvent)
 {
     _channel = channel;
 }
Esempio n. 7
0
 public ShowLayerEvent(ShowEvent srcEvent, string name)
     : base(srcEvent)
 {
     _name = name;
 }
Esempio n. 8
0
 public ShowLayerEvent(ShowEvent srcEvent)
     : base(srcEvent)
 {
     _layer = SelectedLayer;
 }