Inheritance: System.EventArgs
Example #1
0
        private void RaiseColorPicked(ColorEventArgs e)
        {
            var handler = ColorPicked;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 private void OnScreenColorPickerColorPicked(object sender, ColorEventArgs e)
 {
     ((XnaColorEditorViewModel) DataContext).Value = XnaColorToColorConverter.Convert(e.Color);
 }
Example #3
0
 private void OnScreenColorPickerColorPicked(object sender, ColorEventArgs e)
 {
     ((ColorEditorViewModel) DataContext).Value = e.Color;
 }
Example #4
0
 private void RaiseColorPicked(ColorEventArgs e)
 {
     var handler = ColorPicked;
     if (handler != null) handler(this, e);
 }