当前位置: 首页>>代码示例>>C#>>正文


C# Rectangle.SetBounds方法代码示例

本文整理汇总了C#中Rectangle.SetBounds方法的典型用法代码示例。如果您正苦于以下问题:C# Rectangle.SetBounds方法的具体用法?C# Rectangle.SetBounds怎么用?C# Rectangle.SetBounds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Rectangle的用法示例。


在下文中一共展示了Rectangle.SetBounds方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetBounds

 public Rectangle GetBounds()
 {
     Rectangle r = new Rectangle();
     r.SetBounds(0, ldr.Ascent, ldr.MaxWidth, ldr.PixHeight);
     return r;
 }
开发者ID:ChrisJamesSadler,项目名称:Cosmos,代码行数:6,代码来源:FntFont.cs

示例2: Initialize

		/// <summary>
		/// Processes the raw data into a usable form.
		/// </summary>
		public void Initialize()
		{
			bounds = new Rectangle();
			bounds.SetBounds(0,0,Width,Height);
            switch (Type)
            {
                case FntGlyphType.Version2:
                case FntGlyphType.Color1:
                    uint RowBytes = (uint)((Width + 7) >> 3);
                    uint RowBits = (uint)Math.Floor((double)Width * .125) + (uint)(Width % 8);
                    Data = new int[Height * Width];
                    byte value;
                    for (int y = 0, im = 0; y < Height; y++)
                    {
                        for (int x = 0, xbits = 0; x < RowBytes; x++)
                        {
                            value = RawData[(y * RowBytes) + x];
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x80) >> 7);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x40) >> 6);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x20) >> 5);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x10) >> 4);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x08) >> 3);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x04) >> 2);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x02) >> 1);
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
                            if (xbits < RowBits)
                            {
                                Data[im] = (byte)((value & 0x01)     );
                                xbits++;
                                im++;
                            }
                            else
                            {
                                break;
                            }
//.........这里部分代码省略.........
开发者ID:ChrisJamesSadler,项目名称:Cosmos,代码行数:101,代码来源:FntGlyph.cs

示例3: GetBounds

 public Rectangle GetBounds()
 {
 	Rectangle r = new Rectangle();
 	r.SetBounds(this.CSpace, this.Ascent, this.MaxWidth, this.PixHeight);
 	return r;
 }
开发者ID:Orvid,项目名称:Cosmos,代码行数:6,代码来源:FntLoader.cs


注:本文中的Rectangle.SetBounds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。