Exemplo n.º 1
0
 public int ConvertDipsToPixels(float dips, CanvasDpiRounding roundingBehavior)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public int ConvertDipsToPixels(float dips, CanvasDpiRounding roundingBehavior)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Converts the dips to pixels.
 /// </summary>
 /// <param name="dips">The dips to convert.</param>
 /// <param name="dpiRounding">The rounding mode.</param>
 /// <returns>
 /// The resulting pixels.
 /// </returns>
 public int ConvertDipsToPixels(float dips, CanvasDpiRounding dpiRounding)
 {
     return(canvasControl?.ConvertDipsToPixels(dips, dpiRounding) ?? -1);
 }