| | |
| | | // -(void)setBorderWidth:(int)borderWidth; |
| | | [Export("setBorderWidth:")] |
| | | void SetBorderWidth(int borderWidth); |
| | | |
| | | // -(CGFloat)getProgressY; |
| | | [Export("getProgressY")] |
| | | nfloat ProgressY { get; } |
| | | } |
| | | |
| | | |
| | |
| | | // -(void)setOffline:(BOOL)isOffline; |
| | | [Export("setOffline:")] |
| | | void SetOffline(bool isOffline); |
| | | |
| | | // -(CGFloat)getProgressX; |
| | | [Export("getProgressX")] |
| | | nfloat ProgressX { get; } |
| | | } |
| | | |
| | | |
| | |
| | | // -(void)setOffline:(BOOL)isOffline; |
| | | [Export("setOffline:")] |
| | | void SetOffline(bool isOffline); |
| | | |
| | | // -(CGFloat)getProgressY; |
| | | [Export("getProgressY")] |
| | | nfloat ProgressY { get; } |
| | | } |
| | | |
| | | |
| | |
| | | [Export("setProgressBarColors:endColor:")] |
| | | void SetProgressBarColors(UIColor startColor, UIColor endColor); |
| | | } |
| | | |
| | | |
| | | //******************************************HDLDiyImageSeekBar 可以自定义拖动按钮图标的 滑动Seekbar*****************************************// |
| | | // @interface HDLDiyImageSeekBar : UIControl |
| | | [BaseType(typeof(UIControl))] |
| | | interface HDLDiyImageSeekBar |
| | | { |
| | | // @property (assign, nonatomic) BOOL isClickable; |
| | | [Export("isClickable")] |
| | | bool IsClickable { get; set; } |
| | | |
| | | // @property (nonatomic, strong) UIColor * _Nonnull mArcBackBarColor; |
| | | [Export("mArcBackBarColor", ArgumentSemantic.Strong)] |
| | | UIColor MArcBackBarColor { get; set; } |
| | | |
| | | // @property (nonatomic, strong) UIColor * _Nonnull mProgressBarColor; |
| | | [Export("mProgressBarColor", ArgumentSemantic.Strong)] |
| | | UIColor MProgressBarColor { get; set; } |
| | | |
| | | // @property (assign, nonatomic) int mProgress; |
| | | [Export("mProgress")] |
| | | int MProgress { get; set; } |
| | | |
| | | // @property (assign, nonatomic) BOOL isProgressTextShow; |
| | | [Export("isProgressTextShow")] |
| | | bool IsProgressTextShow { get; set; } |
| | | |
| | | // @property (nonatomic, strong) UIColor * _Nonnull mProgressTextColor; |
| | | [Export("mProgressTextColor", ArgumentSemantic.Strong)] |
| | | UIColor MProgressTextColor { get; set; } |
| | | |
| | | // @property (assign, nonatomic) int mProgressTextSize; |
| | | [Export("mProgressTextSize")] |
| | | int MProgressTextSize { get; set; } |
| | | |
| | | [Wrap("WeakMProgressChangedDelegate")] |
| | | [NullAllowed] |
| | | HDLSeekBarProgressChangedDelegate MProgressChangedDelegate { get; set; } |
| | | |
| | | // @property (nonatomic, weak) id<HDLSeekBarProgressChangedDelegate> _Nullable mProgressChangedDelegate; |
| | | [NullAllowed, Export("mProgressChangedDelegate", ArgumentSemantic.Weak)] |
| | | NSObject WeakMProgressChangedDelegate { get; set; } |
| | | |
| | | // -(void)setProgress:(int)mProgress; |
| | | [Export("setProgress:")] |
| | | void SetProgress(int mProgress); |
| | | |
| | | // -(void)setProgressBarUnitSring:(NSString * _Nonnull)mString; |
| | | [Export("setProgressBarUnitSring:")] |
| | | void SetProgressBarUnitSring(string mString); |
| | | |
| | | // -(void)setMinAndMaxValue:(float)mMinValue mMaxValue:(float)mMaxValue; |
| | | [Export("setMinAndMaxValue:mMaxValue:")] |
| | | void SetMinAndMaxValue(float mMinValue, float mMaxValue); |
| | | |
| | | // -(void)initWithFrameSeekBar:(CGRect)mCGRect; |
| | | [Export("initWithFrameSeekBar:")] |
| | | void InitWithFrameSeekBar(CGRect mCGRect); |
| | | |
| | | // -(void)setSeekBarPadding:(int)Padding; |
| | | [Export("setSeekBarPadding:")] |
| | | void SetSeekBarPadding(int Padding); |
| | | |
| | | // -(void)setProgressBarHeight:(int)mHeight; |
| | | [Export("setProgressBarHeight:")] |
| | | void SetProgressBarHeight(int mHeight); |
| | | |
| | | // -(void)setBitmapButtonHeight:(int)mHeight; |
| | | [Export("setBitmapButtonHeight:")] |
| | | void SetBitmapButtonHeight(int mHeight); |
| | | |
| | | // -(void)setOffline:(BOOL)isOffline; |
| | | [Export("setOffline:")] |
| | | void SetOffline(bool isOffline); |
| | | |
| | | // -(void)setBgBitmapButton:(UIImage * _Nonnull)mImage; |
| | | [Export("setBgBitmapButton:")] |
| | | void SetBgBitmapButton(UIImage mImage); |
| | | } |
| | | } |
| | | |