2

我正在执行无法在设计器中执行的代码行,导致我的所有控件的公共属性不再显示在设计器中。因此,我再也看不到在 Visual Studios 设计视图中使用该控件的任何表单。

有问题的代码行调用了一个不安全的代码项目,它做了一些图像处理;评论它使设计视图恢复生机。但是,代码执行得很好,所以我看不出为什么代码在设计器中失败了。这是被调用的代码:

        /// <summary>
        /// Performs a color adjustment on the source bitmap. 
        /// </summary>
        /// <param name="source">The bitmap to be processed. This is changed by the
        /// process action.</param>
        /// <param name="redChange">change to the red value. Can be negative.</param>
        /// <param name="greenChange">change to the green value. Can be negative.</param>
        /// <param name="blueChange">change to the blue value. Can be negative.</param>
        /// <returns></returns>
        public static Bitmap ProcessColor(Bitmap source, int redChange, int greenChange, int blueChange)
        {
            sourceBitmap = source;

            // lock the source bitmap
            sourceBitmapData = getBitmapData(sourceBitmap, ref sourceWidth);
            sourcepBase = (Byte*)sourceBitmapData.Scan0.ToPointer();

            PixelData* pPixel;

            for (int y = 0; y < source.Height; y++)
            {
                pPixel = (PixelData*)(sourcepBase + y * sourceWidth);
                for (int x = 0; x < source.Width; x++)
                {
                    int redVal = pPixel->red + redChange;
                    if ( redVal <0 ) redVal = 0;
                    if ( redVal > 255) redVal = 255;
                    pPixel->red = (byte)redVal;

                    int greenVal = pPixel->green + greenChange;
                    if ( greenVal <0 ) greenVal = 0;
                    if ( greenVal > 255) greenVal = 255;
                    pPixel->green = (byte)greenVal;

                    int blueVal = pPixel->blue + blueChange;
                    if (blueVal < 0) blueVal = 0;
                    if (blueVal > 255) blueVal = 255;
                    pPixel->blue = (byte)blueVal;

                    pPixel++;
                }
            }

            sourceBitmap.UnlockBits(sourceBitmapData);
            sourceBitmapData = null;
            sourcepBase = null;

            return source;
        }

(由 OpenNETCF 社区提供)

我的项目没有被标记为不安全,但是上面代码所在的项目被标记为不安全。这两个项目都需要标记为不安全吗?

或者,有没有一种方法可以阻止在设计器中触发该行代码(在设计视图中我实际上不需要此代码的输出,因为它只是从提供的图像生成图像的禁用版本)。

编辑:阻止代码运行并不能解决问题。只有注释掉线才能使设计视图起作用。将行放入(即使放入 if[false == true] 语句)会导致设计人员显示错误,而不是表单。

4

2 回答 2

5

将部分代码包装在if

if(!DesignMode)
{
    // Your "unsafe" code goes here
}

如果您使用的是 Compact Framework,请使用以下命令:

if(Site != null && !Site.DesignMode)
{
    // Your "unsafe" code goes here
}

请参阅有关模式信息的这篇文章,了解野兽DesignMode实际上是什么。

于 2009-05-05T09:09:38.930 回答
3

我没有创建这个,但我想我会添加一个有用的技巧找到-->here<--

只需将其添加到您的控件并适当地使用它。

public static bool IsDesignMode
{
  get 
  { 
    return AppDomain.CurrentDomain.FriendlyName.Contains("DefaultDomain"); 
  }
}

或者对于我们 VB.NET 的人来说:

  Public Shared ReadOnly Property IsDesignMode() As Boolean
    Get
      Return AppDomain.CurrentDomain.FriendlyName.Contains("DefaultDomain")
    End Get
  End Property
于 2013-04-19T04:13:17.043 回答