Exemplo n.º 1
0
 public Color GetRgbColor()
 {
     return(HsbValueConverter.HsbToRgb(new HsbValueConverter.HsbColor
     {
         A = 1,
         B = B,
         H = colorSelector.H,
         S = S
     }));
 }
Exemplo n.º 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
     }));
 }