0

マイクからオーディオを録音するには、このウィンドウが必要です: xaml:

<Window x:Class="Mesius_Leitner_Professional.Record"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Record" Height="308" Width="378">
    <Grid>
        <Button Content="start" Height="23" HorizontalAlignment="Left" Margin="43,132,0,0" Name="button1" VerticalAlignment="Top" Width="75" />
        <Button Content="stop'n save" IsEnabled="False" Height="23" HorizontalAlignment="Right" Margin="0,132,157,0" Name="button2" VerticalAlignment="Top" Width="75" />
        <Button Content="play" Height="23" IsEnabled="false" HorizontalAlignment="Left" Margin="205,132,0,0" Name="button3" VerticalAlignment="Top" Width="75" />
    </Grid>
</Window>

および背後にあるコード:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace Mesius_Leitner_Professional
{
    /// <summary>
    /// Interaction logic for Record.xaml
    /// </summary>
    public partial class Record : Window
    {
        public Record()
        {
            InitializeComponent();
        }
    }
}

簡単なコマンドを使用してオーディオを録音するために使用できる標準ライブラリまたは追加のクラスはありますか?

4

1 に答える 1