コード例 #1
0
ファイル: TunerView.cs プロジェクト: vasiliy-yashkov/Musical
 public TunerView()
 {
     InitializeComponent();
     stringLabels = new List <Label>();
     controller   = new TunerController(this, new PitchDetector(8000));
     CorrelationChart.Series.Add("Line");
     CorrelationChart.Series["Line"].ChartType = SeriesChartType.Line;
 }
コード例 #2
0
ファイル: TunerView.cs プロジェクト: vasiliy-yashkov/Musical
 public void SetController(TunerController CONTROLLER)
 {
     controller = CONTROLLER;
 }