; }
}
//翻转方式属性
[
Category("ImageZoomer"),
Description("Specify how the image will be flipped.")
]
public FlipModeStyle FlipMode
{
get
{
return flip;
}
set
{
flip=value;
this.Invalidate(this.ClientRectangle);
}
}
//事件属性
[
Category("ImageZoomer"),
Description("Occurs when the image size is changed.")
]
public event DisplaySizeChangedEventHandler DisplaySizeChanged
{
add
{
eventHandler+=value;
}
remove
{
eventHandler-=value;
}
}
protected override void OnPaint(PaintEventArgs pe)
{
}
//翻转方式属性
[
Category("ImageZoomer"),
Description("Specify how the image will be flipped.")
]
public FlipModeStyle FlipMode
{
get
{
return flip;
}
set
{
flip=value;
this.Invalidate(this.ClientRectangle);
}
}
//事件属性
[
Category("ImageZoomer"),
Description("Occurs when the image size is changed.")
]
public event DisplaySizeChangedEventHandler DisplaySizeChanged
{
add
{
eventHandler+=value;
}
remove
{
eventHandler-=value;
}
}
protected override void OnPaint(PaintEventArgs pe)
{
| 对此文章发表了评论 |

