wxr
2020-01-10 1a4b95a7ebef71838bd3eda2c22056bbf0db65ec
Shared.IOS/UI/ArcSeekBar.cs
@@ -1,5 +1,4 @@
using System;
//using Shared.I;
using Shared.IOS.TBL;
@@ -35,8 +34,6 @@
        {
            mHDLArcSeekBar = new HDLArcSeekbar
            {
                //Frame = new CoreGraphics.CGRect(0, 0, this.Width, this.Height),
                //mHDLArcSeekBar.Frame = new CoreGraphics.CGRect(0, 0, 1024, 1024);
                MProgressChangedDelegate = new OnProgressChangeListener(this)
            };
@@ -64,8 +61,6 @@
            {
                base.Width = value;
                RefreshFrame();
                //mHDLArcSeekBar.InitWithFrameArc(new CoreGraphics.CGRect(base.X, base.Y, base.Width, base.Height));
            }
        }
@@ -83,7 +78,6 @@
            {
                base.Height = value;
                RefreshFrame();
            }
        }
@@ -100,8 +94,6 @@
            {
                base.X = value;
                RefreshFrame();
                //mHDLArcSeekBar.InitWithFrameArc(new CoreGraphics.CGRect(base.X, base.Y, base.Width, base.Height));
            }
        }
@@ -119,8 +111,6 @@
            {
                base.Y = value;
                RefreshFrame();
                //mHDLArcSeekBar.InitWithFrameArc(new CoreGraphics.CGRect(base.X, base.Y, base.Width, base.Height));
            }
        }
@@ -178,7 +168,6 @@
            get
            {
                return (int)mHDLArcSeekBar.MProgressCurrentValue;
            }
        }
@@ -203,8 +192,6 @@
        {
            set
            {
                //mHDLArcSeekBar.SetArcColors(value);
                byte r, g, b, a;
                r = (byte)(value / 256 / 256 % 256);
                g = (byte)(value / 256 % 256);
@@ -290,7 +277,6 @@
        {
            set
            {
                //mHDLArcSeekBar.SetThumbRadius(value);
                mHDLArcSeekBar.MThumbWidth = value * 2;//设置直径
            }
        }
@@ -316,7 +302,6 @@
        {
            set
            {
                byte r, g, b, a;
                r = (byte)(value / 256 / 256 % 256);
                g = (byte)(value / 256 % 256);
@@ -324,8 +309,6 @@
                a = (byte)(value / 256 / 256 / 256 % 256);
                mHDLArcSeekBar.MProgressTextColor = UIKit.UIColor.FromRGBA(r, g, b, a);
                //mHDLArcSeekBar.SetProgressTextColor(UIKit.UIColor.FromRGBA(r,  g, b, a));
            }
        }
@@ -337,7 +320,6 @@
        {
            set
            {
                //set => mHDLArcSeekBar.SetProgressTextSize(value);
                mHDLArcSeekBar.MProgressTextSize = value;
            }