示例#1
0
 public abstract void ColorValueEditorControlShow(IServiceProvider provider, object[] propertyOwners, PropertyInfo property, out bool changed, out ColorValue newValue);
示例#2
0
 public abstract void ColorValueEditorControlShow(IServiceProvider provider, ColorValue colorValue, out bool changed, out ColorValue newValue);
示例#3
0
 public ColorValueRange(ColorValue minimum, ColorValue maximum)
 {
     this.minimum = minimum;
     this.maximum = maximum;
 }
示例#4
0
 static ColorValue()
 {
     Zero = new ColorValue(0f, 0f, 0f, 0f);
 }
示例#5
0
 public ColorValueRange(ColorValueRange source)
 {
     minimum = source.minimum;
     maximum = source.maximum;
 }