5

此应用程序会提示您打开文件夹。然后,该应用程序会查看文件夹中的所有文件并为每个 (.wav) 文件生成一个按钮。然后我的意图是在按下按钮时播放(.wav)文件。

因为它是我动态创建按钮。我使用button.Tag发送按钮编号,但是我希望发送另一个包含 wav 文件完整路径的对象。我已经伪添加了它,但是我知道你不能button.Tag像我一样添加两个。所以我的问题是如何实现这一点。

public partial class Form1 : Form
{
    public SoundPlayer Sound1;
    public static int btnCount = 0;

    public Form1()
    {
        InitializeComponent();
        SetFolderPath();
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }

    public void addDynamicButton(string folder, string fileName)
    {
        btnCount++;
        string soundfilepath = folder + "\\" + fileName + ".wav";

        Button button = new Button();
        button.Location = new Point(20, 30 * btnCount + 10);
        button.Size = new Size(300, 23);

        button.Text = fileName;
        button.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
        button.UseVisualStyleBackColor = true;

        button.Click += new EventHandler(btnDynClickEvent);
        button.Tag = btnCount;
        button.Tag = soundfilepath;
        this.Controls.Add(button);

    }

    void btnDynClickEvent(object sender, EventArgs e)
    {
        Button button = sender as Button;
        if (button != null)
        {

            switch ((int)button.Tag)
            {
                case 1:
                    Sound1 = new SoundPlayer((string)button.Tag);
                Sound1.Play();
                break;

            }
        }
    }

    public void SetFolderPath()
    {

        FolderBrowserDialog folder = new FolderBrowserDialog();

        folder.Description = "Select the sound file Folder";

        if (textBox1.Text.Length > 2)
        {
            folder.SelectedPath = textBox1.Text;
        }

        else
        {
            folder.SelectedPath = @"C:\";
        }

        if (folder.ShowDialog() == DialogResult.OK)
        {
            textBox1.Text = folder.SelectedPath;

            string[] files = Directory.GetFiles(folder.SelectedPath, "*.wav", SearchOption.AllDirectories);
            int count = files.Length;

            richTextBox1.Text = count.ToString() + " Files Found";

            foreach (string file in files)
            {
                string fileName = Path.GetFileNameWithoutExtension(file);
                addDynamicButton(folder.SelectedPath, fileName);
            }
        }
    }


    private void btnOpenFolder(object sender, EventArgs e)
    {
        SetFolderPath();
    }


}
4

6 回答 6

4

我推荐一个专门的对象来存储在Tag属性中:

class WaveDetailTag {

    public FileInfo WaveFile {get; set;}
    public int ButtonId {get; set;}

}

执行:

// ...
button.Tag = new WaveDetailTag() { 
    WaveFile = new FileInfo(soundfilepath), 
    ButtonId = btnCount 
};
// ...

更新
使用switch-case

    Button button = sender as Button;
    if (button != null)
    {
        var waveDetail = (WaveDetailTag)button.Tag;
        switch (waveDetail.ButtonId)
        {
            case 1:
                Sound1 = new SoundPlayer(waveDetail.WaveFile.FullName);
                Sound1.Play();
                break;
        }
    }
于 2013-05-11T15:55:56.740 回答
2

你应该设置你的标签

button.Tag= new {Count = btnCount, FileName=soundFfilepath);//anonymouse type

当您想要检索您的值时,您可以使用动态

int count=((dynamic)button.Tag).Count;
string filename=((dynamic)button.Tag).FileName;

或者

int count=(int) button.Tag.GetType().GetProperty("Count").GetValue(obj, null);
string filename= button.Tag.GetType().GetProperty("FileName").GetValue(obj, null).ToString();


您还可以为第二个解决方案创建一个新方法

object GetValueByProperty(object obj,string propName)
{
 return   obj.GetType().GetProperty(propName).GetValue(obj, null);
}

调用简单地使用

int count=(int) GetValueByProperty(button.Tag,"Count");
string filename=GetValueByProperty(button.Tag,"FileName");.ToString();
于 2013-05-11T16:03:29.147 回答
0

多个标签是不可能的,但您可以使用List(List<object>List<MyType>) 或数组作为Tag.

您还可以创建自己的类来包含所有想要的信息,这将是更可取的:

class MyTagInfo
{
    public int Num;
    public string Text;
    public bool SomeMoreInfo;
}

和用法:

myControl.Tag = new MyTagInfo { Num = 0, Text = "Hello World!" };
于 2013-05-11T15:55:03.080 回答
0

您可以将 List 存储到 Tag 属性中,这允许您在其中存储多个对象。

button.Tag = new List<object>();
(List<object> button.Tag).Add(btnCount);
(List<object> button.Tag).Add(soundfilepath);
于 2013-05-11T15:55:08.660 回答
0

使用自定义类并将其存储在Tag属性中,例如:

public class WaveButton
{
    public int Number { get; set; }
    public string WaveFilePath { get; set; }
}

.....


button.Tag = new WaveButton() { Number = n, WaveFilePath = path }
于 2013-05-11T15:57:01.297 回答
0

我知道它为时已晚,但我想出了一个简单的方法来做到这一点。只需像这样加入字符串string join = String.join(","firstString,secondString); button.Tag = join; ,然后在使用它之前将它分成两个这样的字符串

string[] split = join.Split(',');
        string title = split[1];
        string link = split[0];

并根据需要使用字符串标题和字符串链接。(Y)我不知道这是否是一个好习惯,但我正在使用它并且它工作得很好。

我是 C# 的新手。

于 2016-09-01T08:01:43.803 回答