123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Controls;
- namespace NEIntelligentControl2.Models.BoostStation
- {
-
-
-
- internal interface IBoostStationPoint
- {
-
-
-
- bool IsSelected { get; set; }
-
-
-
- double Value { get; set; }
-
-
-
- string DataTag { get; set; }
-
-
-
- bool IsTemplete { get; set; }
-
-
-
- bool IsEditModel { get; set; }
-
-
-
- int Proportion { get; set; }
-
-
-
- string Info { get; set; }
-
-
-
- bool IsNegate { get; set; }
-
-
-
- Action<Control> Clicked { get; set; }
-
-
-
-
- void Zoom(int times);
- }
- }
|