Example #1
0
 public void Display(Pix Pix = null)
 {
     var n = new ShowPix(GetBitmap(Pix));
 }
Example #2
0
 public void Display(Pix Pix)
 {
     var CRed = BitConverter.ToUInt32(new byte[] { 255, 0, 0, 0 }, 0);
     var CBlu = BitConverter.ToUInt32(new byte[] { 0, 255, 0, 0 }, 0);
     var n    = new ShowPix(_All.pixDisplayHitMissSel(Pix, this, 1, CRed, CBlu));
 }
Example #3
0
 public void Display()
 {
     var n = new ShowPix(_All.selDisplayInPix(this, 1, 1));
 }
Example #4
0
 public void Display(int NCols = 4)
 {
     var n = new ShowPix(GetBitmap());
 }
Example #5
0
 public void Display(Boxa boxa)
 {
     var n = new ShowPix(_All.pixDrawBoxa(this, boxa, 1, Convert.RGBAUInt(Color.Red)));
 }
Example #6
0
 public void Display(string Text = "")
 {
     var n = new ShowPix(this, Text);
 }