mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
26 lines
517 B
C#
26 lines
517 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using CUETools.Codecs.Icecast;
|
|
|
|
namespace CUEPlayer
|
|
{
|
|
public partial class IcecastSettings : Form
|
|
{
|
|
public IcecastSettings(IcecastSettingsData data)
|
|
{
|
|
InitializeComponent();
|
|
icecastSettingsDataBindingSource.DataSource = data;
|
|
}
|
|
|
|
private void IcecastSettings_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|