public Color GetRgbColor()
 {
     return(HsbValueConverter.HsbToRgb(new HsbValueConverter.HsbColor
     {
         A = 1,
         B = B,
         H = colorSelector.H,
         S = S
     }));
 }
Exemple #2
0
 /// <summary>
 /// Get the selected Color
 /// </summary>
 /// <returns></returns>
 public Color GetRgbColor()
 {
     return(HsbValueConverter.HsbToRgb(new HsbValueConverter.HsbColor
     {
         A = 1,
         B = 1,
         S = 1,
         H = H
     }));
 }