drawing

  1. H

    Draw Both Arabic And English Words Char By Char?

    I'm trying to draw the same text from textBox to Panel char By Char For both Arabic & English with the same char size and position also style and color my code works perfectly if the text is English language but for Arabic its printing separated chars . I Know if i use DrawString , DrawTextBox...
  2. 6atafrak

    need code for drawing this square

    Hey guys, I need help this is code for the triangle from photo protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; Pen p = new Pen(Color.Blue, 2); int n = 3, m = 30; //1st int x1 = 100, y1...
  3. E

    Question Manual Transparent Background Double Buffer Drawing

    Hi, I am trying to draw a series of lines to a buffer that has a transparent background which will then be drawn over another window however I cannot get it to draw. The aim of this is to only draw the image to memory once (if i'm not mistaken that's how it works?) but to be able to draw that...
Back
Top Bottom