Aracılığıyla paylaş


SoundPlayer.SoundLocation Özellik

Tanım

Yükleniyor .wav dosyasının dosya yolunu veya URL'sini alır veya ayarlar.

public:
 property System::String ^ SoundLocation { System::String ^ get(); void set(System::String ^ value); };
public string SoundLocation { get; set; }
member this.SoundLocation : string with get, set
Public Property SoundLocation As String

Özellik Değeri

.wav dosyasının yüklendiği dosya yolu veya URL ya da Empty dosya yolu yoksa. Varsayılan değer: Empty.

Örnekler

Aşağıdaki kod örneği, .wav dosya kaynağını sınıfın SoundLocation bir örneğine atamak için özelliğinin SoundPlayer kullanımını gösterir. Bu kod örneği, sınıfı için SoundPlayer sağlanan daha büyük bir örneğin parçasıdır.

try
{
   
   // Assign the selected file's path to 
   // the SoundPlayer object.  
   player->SoundLocation = filepathTextbox->Text;
   
   // Load the .wav file.
   player->Load();
}
catch ( Exception^ ex ) 
{
   ReportStatus( ex->Message );
}
try
{
    // Assign the selected file's path to 
    // the SoundPlayer object.  
    player.SoundLocation = filepathTextbox.Text;

    // Load the .wav file.
    player.Load();
}
catch (Exception ex)
{
    ReportStatus(ex.Message);
}
Try
    ' Assign the selected file's path to the SoundPlayer object.
    player.SoundLocation = filepathTextbox.Text

    ' Load the .wav file.
    player.Load()
Catch ex As Exception
    ReportStatus(ex.Message)
End Try

Açıklamalar

Özelliği olarak String.EmptyStream ayarlandığında bu özellik olarak ayarlanır Stream.

Şunlara uygulanır

Ayrıca bkz.