This is how my music player looks likeプレイ複数のファイル
みなさん、こんにちは、最近、私は、Visual StudioのWPFの音楽プレーヤーのプロジェクトをやっています。 すべての基本的な機能が完了したら、今は複数のファイルを含むファイルプレイリストを作成したいと思います。
それで、実行すると、まずファイルを開くボタンをクリックしてファイルを選択します。その後、リストボックスにロードされます。その曲を再生するには、リストボックスで曲をダブルクリックするか、再生ボタンをクリックしてから曲をクリックするかを選択できます。私の曲の選択が変わると、 "Now Playing"のlblName情報が変わりました。
私はグーグルでコードを作成しようとしましたが(一部はコピーして修正しました)、ファイルはリストボックスに読み込まれましたが、まったく再生できません。
<Window x:Class="WPFplayer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WPFplayer"
mc:Ignorable="d"
Title="WPF Music Player" Height="380.436" Width="507.483">
<Grid Margin="0,0,2,0" Height="350" VerticalAlignment="Top">
<Grid.Background>
<LinearGradientBrush EndPoint="0.5,1" MappingMode="RelativeToBoundingBox" StartPoint="0.5,0" SpreadMethod="Repeat">
<GradientStop Color="Black" Offset="1"/>
<GradientStop Color="#FFF3FF00" Offset="0.6"/>
</LinearGradientBrush>
</Grid.Background>
<Button x:Name="btnOpen" Content="Open File..." HorizontalAlignment="Left" Margin="17,162,0,0" VerticalAlignment="Top" Width="75" Click="btnOpen_Click"/>
<Button x:Name="btnPlay" Content="Play" HorizontalAlignment="Left" Margin="131,154,0,0" VerticalAlignment="Top" Width="75" Click="btnPlay_Click" Height="30"/>
<Button x:Name="btnPause" Content="Pause" HorizontalAlignment="Left" Margin="211,154,0,0" VerticalAlignment="Top" Width="75" Click="btnPause_Click" Height="30"/>
<Button x:Name="btnStop" Content="Stop" HorizontalAlignment="Left" Margin="291,154,0,0" VerticalAlignment="Top" Width="75" Click="btnStop_Click" Height="30"/>
<Label x:Name="lblTime" Content="-----" HorizontalAlignment="Left" Margin="371,121,0,0" VerticalAlignment="Top" RenderTransformOrigin="-0.471,0.295"/>
<Label x:Name="lblBiasa" Content="Now Playing :" HorizontalAlignment="Left" Margin="17,68,0,0" VerticalAlignment="Top" FontWeight="Bold"/>
<Label x:Name="lblName" Content="(No Song...)" HorizontalAlignment="Left" Margin="17,94,0,0" VerticalAlignment="Top"/>
<Slider x:Name="sliProgress" Thumb.DragStarted="sliProgress_DragStarted" Thumb.DragCompleted="sliProgress_DragCompleted" ValueChanged="sliProgress_ValueChanged" HorizontalAlignment="Left" Margin="17,125,0,0" VerticalAlignment="Top" Width="354"/>
<Slider x:Name="sliderVol" Value="0.5" Minimum="0" HorizontalAlignment="Left" Margin="436,92,0,0" VerticalAlignment="Top" Width="33" TickPlacement="BottomRight" Cursor="Arrow" Orientation="Vertical" Height="121" ValueChanged="sliderVol_ValueChanged" TickFrequency="0.1" SmallChange="0.01" LargeChange="0.1" Maximum="1"/>
<Label x:Name="label" Content="MUSIC PLAYER" HorizontalAlignment="Left" Margin="173,10,0,0" VerticalAlignment="Top" FontWeight="Bold" FontSize="22"/>
<Label x:Name="label1" Content="Volume" HorizontalAlignment="Left" Margin="423,64,0,0" VerticalAlignment="Top" FontWeight="Bold"/>
<CheckBox x:Name="chkKaraoke" Content="Karaoke" HorizontalAlignment="Left" Margin="286,78,0,0" VerticalAlignment="Top"/>
<CheckBox x:Name="checkBox" Content="Bass Boost" HorizontalAlignment="Left" Margin="286,99,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.743,0.625"/>
<ListBox x:Name="listBox" HorizontalAlignment="Left" Height="139" Margin="17,189,0,0" VerticalAlignment="Top" Width="388" SelectionChanged="listBox_SelectionChanged" MouseDoubleClick="listBox_MouseDoubleClick"/>
</Grid>
string[] files;
private void btnOpen_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.AddExtension = true;
ofd.DefaultExt = "*.*";
ofd.Filter = "All files (*.*)|*.*";
ofd.Multiselect = true;
ofd.ShowDialog();
files = ofd.SafeFileNames;
foreach (string song in files)
{
if (!listBox.Items.Contains(song))
{
listBox.Items.Add(song);
}
}
foreach (var item in listBox.SelectedItems)
{
lblName.Content = ofd.SafeFileName;
mediaPlayer.Play();
}
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 1);
timer.Tick += timer_Tick;
timer.Start();
}
private void btnPlay_Click(object sender, RoutedEventArgs e)
{
foreach (var item in listBox.SelectedItems)
{
mediaPlayer.Play();
}
}
private void listBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
lblName.Content = (listBox.SelectedValue).ToString();
}
private void listBox_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
lblName.Content = (listBox.SelectedValue).ToString();
mediaPlayer.Play();
}
私はそのコードで逃した何の事を思って。リストボックスにイベントを追加する必要がありますか?
ご協力いただきありがとうございます。