亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用C#自定義音樂播放器進度條的案例

發布時間:2020-09-01 14:57:10 來源:億速云 閱讀:499 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關使用C#自定義音樂播放器進度條的案例的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

有些時候我們做的程序需要進度條,而vs提供的控件不是我們想要的。先看效果圖:

使用C#自定義音樂播放器進度條的案例

進度條閃爍動畫,當然背景可設為Transparent

之前想手繪進度條線條的,結果控件運行時會閃爍,所以直接用了panel控件

源碼:

[DefaultEvent("ProgressClick")]
  [ToolboxBitmap(typeof(TrackBar))]
  public partial class ProcessBar : UserControl
  {
    public ProcessBar()
    {
      //InitializeComponent();
      //this.SetStyle(ControlStyles.UserPaint, true);
      //this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
      //this.SetStyle(ControlStyles.DoubleBuffer, true);
    }

    private int locationX=0;
    [Description("單擊時X的坐標")]
    public int LocationX
    {
      get { return locationX; }
    }
  
    private int current = 0;
    [Description("當前進度")]
    public int Current
    {
      get { return current; }
      set
      {
        if (value > 232 || value < 0)
          return;
        current = value;
        panelCurrent.Size = new Size(value, 1);
        picture.Location = new Point(value - 4, -3);
        Invalidate();
      }
    }

    private bool isPlay = false;
    [Description("是否播放")]
    public bool IsPlay
    {
      get { return isPlay; }
      set { isPlay = value; tmrCurrent.Enabled = isPlay; Invalidate(); }
    }

    public delegate void MouseHandle(object sender,EventArgs e);
    [Description("點下鼠標")]
    public event MouseHandle BarMouseDown;

    int picturetype = 0;
    private void tmrCurrent_Tick(object sender, EventArgs e)
    {
      if (picturetype == 0)
      { picture.Image = Properties.Resources.play_slider_thumb; picturetype = 1; }
      else
      { picture.Image = Properties.Resources.play_slider_thumb_animate; picturetype = 0; }
      GraphicsPath g = subGraphicsPath(picture.Image);
      if (g == null) return;
      picture.Region = new Region(g);
    }

    private unsafe static GraphicsPath subGraphicsPath(Image img)
    {
      if (img == null) return null;
      // 建立GraphicsPath, 給我們的位圖路徑計算使用  
      GraphicsPath g = new GraphicsPath(FillMode.Alternate);
      Bitmap bitmap = new Bitmap(img);
      int width = bitmap.Width;
      int height = bitmap.Height;
      BitmapData bmData = bitmap.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
      byte* p = (byte*)bmData.Scan0;
      int offset = bmData.Stride - width * 3;
      int p0, p1, p2;     // 記錄左上角0,0座標的顏色值 
      p0 = p[0];
      p1 = p[1];
      p2 = p[2];

      int start = -1;
      // 行座標 ( Y col )  
      for (int Y = 0; Y < height; Y++)
      {
        // 列座標 ( X row )  
        for (int X = 0; X < width; X++)
        {
          if (start == -1 && (p[0] != p0 || p[1] != p1 || p[2] != p2))   //如果 之前的點沒有不透明 且 不透明  
          {
            start = X;              //記錄這個點 
          }
          else if (start > -1 && (p[0] == p0 && p[1] == p1 && p[2] == p2))   //如果 之前的點是不透明 且 透明 
          {
            g.AddRectangle(new Rectangle(start, Y, X - start, 1));  //添加之前的矩形到 
            start = -1;
          }
          if (X == width - 1 && start > -1)    //如果 之前的點是不透明 且 是最后一個點 
          {
            g.AddRectangle(new Rectangle(start, Y, X - start + 1, 1));   //添加之前的矩形到 
            start = -1;
          }
          p += 3;                  //下一個內存地址 
        }
        p += offset;
      } bitmap.UnlockBits(bmData);
      bitmap.Dispose();
      // 返回計算出來的不透明圖片路徑  
      return g;
    }

    private void panelTotal_MouseDown(object sender, MouseEventArgs e)
    {
      Current = e.Location.X;
      locationX = e.Location.X;
      if (BarMouseDown != null)
      {
        BarMouseDown.Invoke(sender, e);
      }
    }

    private void panelCurrent_MouseDown(object sender, MouseEventArgs e)
    {
      Current = e.Location.X;
      locationX = e.Location.X;
      if (BarMouseDown != null)
      {
        BarMouseDown.Invoke(sender, e);
      }
    }
  }

用到的素材:

使用C#自定義音樂播放器進度條的案例使用C#自定義音樂播放器進度條的案例

直接右鍵另存為圖片,之所以用黑色背景是因為圖片是白色的看不見,不用多說了。

提示:這里用到了unsafe關鍵字,需要設置項目的屬性-----允許運行不安全的代碼,沒有設置的同學不要以為程序錯了

感謝各位的閱讀!關于使用C#自定義音樂播放器進度條的案例就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

思南县| 务川| 文山县| 许昌市| 普格县| 疏勒县| 汉阴县| 武邑县| 虎林市| 韩城市| 安远县| 静安区| 丹棱县| 五大连池市| 宣汉县| 临汾市| 桑日县| 东宁县| 共和县| 新余市| 阿拉尔市| 娄底市| 侯马市| 舟山市| 西林县| 镇远县| 敦化市| 泗阳县| 庐江县| 白玉县| 湛江市| 贵德县| 武清区| 保定市| 石泉县| 高州市| 崇仁县| 延长县| 资中县| 通州市| 开江县|