33 references to Bitmap
System.Drawing (2)
commonui\System\Drawing\Bitmap.cs (1)
324public Bitmap(Image original, int width, int height) : this(width, height) {
commonui\System\Drawing\Icon.cs (1)
1065bitmap = new Bitmap(size.Width, size.Height); // initialized to transparent
System.Web.DataVisualization (5)
Common\Annotation\TextAnnotation.cs (1)
937graphicsImage = new System.Drawing.Bitmap(Common.ChartPicture.Width, Common.ChartPicture.Height);
Common\General\Chart.cs (3)
249using (Bitmap bitmap = new Bitmap(this.Width, this.Height)) 320image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height)); 1623Bitmap image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height));
Common\General\ChartGraphics.cs (1)
401 Bitmap bitmap = new Bitmap(image.Width, image.Height);
System.Web.Mobile (3)
UI\MobileControls\Design\Util\ImageCreator.cs (2)
34using(Bitmap bmp = new Bitmap(1,1)) 111Bitmap bitmap = new Bitmap(width, height);
UI\MobileControls\Design\Util\WbmpConverter.cs (1)
49Bitmap bitmap = new Bitmap(width, height);
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (1)
120using (Bitmap b = new Bitmap(2, 2)) {
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxBaseAdapter.cs (1)
258Bitmap bitmap = new Bitmap(fullSize.Width, fullSize.Height);
winforms\Managed\System\WinForms\ControlPaint.cs (7)
1279Bitmap bitmap = new Bitmap(rectangle.Width, rectangle.Height); 1362using (Bitmap bitmap = new Bitmap(width, height)) { 1476Bitmap bitmap = new Bitmap(width, height); 1596using (Bitmap bmp = new Bitmap(image.Width, image.Height)) { 2156Bitmap bitmap = new Bitmap(patternSize, patternSize); 2204Bitmap b = new Bitmap(2,2); 2276Bitmap bitmap = new Bitmap(patternSize, patternSize);
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (1)
1434Bitmap bitmap = new Bitmap(fullSize.Width, fullSize.Height);
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
862bmFlipXPThemes = this.FlipXPThemesBitmap = new Bitmap(backgroundBounds.Width, backgroundBounds.Height);
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
834using (Bitmap bmFlipXPThemes = new Bitmap(backgroundBounds.Height, backgroundBounds.Width)) {
winforms\Managed\System\WinForms\ImageList.cs (1)
745result = new Bitmap(imageSize.Width, imageSize.Height);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
1121bitmap = new Bitmap(scaledIconWidth, scaledIconHeight);
winforms\Managed\System\WinForms\ToolStrip.cs (1)
2839using (Bitmap image = new Bitmap(bounds.Width, bounds.Height))
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
817Bitmap image = new Bitmap(16, 16);
winforms\Managed\System\WinForms\ToolStripRenderer.cs (1)
1079Bitmap disabledBitmap = new Bitmap(size.Width, size.Height);
System.Windows.Forms.DataVisualization (5)
Common\Annotation\TextAnnotation.cs (1)
937graphicsImage = new System.Drawing.Bitmap(Common.ChartPicture.Width, Common.ChartPicture.Height);
Common\General\Chart.cs (3)
249using (Bitmap bitmap = new Bitmap(this.Width, this.Height)) 320image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height)); 1623Bitmap image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height));
Common\General\ChartGraphics.cs (1)
401 Bitmap bitmap = new Bitmap(image.Width, image.Height);
System.WorkflowServices (1)
System\Workflow\Activities\Design\RichListBox.cs (1)
245listItemBitmapCache.Add(viewType.Name, new Bitmap(listItemRenderer.Size.Width, listItemRenderer.Size.Height));