12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.Core
- {
- public sealed class MovingEventArgs : EventArgs
- {
- private Rectangle rectangle;
- public Rectangle Rectangle
- {
- get
- {
- return this.rectangle;
- }
- set
- {
- this.rectangle = value;
- }
- }
- public MovingEventArgs(Rectangle rect)
- {
- this.rectangle = rect;
- }
- }
- }
|