Exemplo n.º 1
0
 public frmEPG(ServerInterface serverIf, List<ChannelInfo> infos)
 {
   InitializeComponent();
   server = serverIf;
   foreach (ChannelInfo info in infos)
     lbChannels.Items.Add(info.channelID + " " + info.name);
 }
Exemplo n.º 2
0
 public frmMain()
 {
   InitializeComponent();
   serverIntf = new ServerInterface();
   extPlayer = new ExternalPlayer();
   ClientSettings.Load();
   miAlwaysPerformConnectionChecks.Checked = ClientSettings.alwaysPerformConnectionChecks;
 }
Exemplo n.º 3
0
 public frmMain()
 {
     InitializeComponent();
     serverIntf = new ServerInterface();
     extPlayer  = new ExternalPlayer();
     ClientSettings.Load();
     miAlwaysPerformConnectionChecks.Checked = ClientSettings.alwaysPerformConnectionChecks;
 }
Exemplo n.º 4
0
 public frmEPG(ServerInterface serverIf, List <ChannelInfo> infos)
 {
     InitializeComponent();
     server = serverIf;
     foreach (ChannelInfo info in infos)
     {
         lbChannels.Items.Add(info.channelID + " " + info.name);
     }
 }
Exemplo n.º 5
0
 public frmMain()
 {
     InitializeComponent();
     serverIntf = new ServerInterface();
     extPlayer  = new ExternalPlayer();
     ClientSettings.Load();
     miAlwaysPerformConnectionChecks.Checked = ClientSettings.alwaysPerformConnectionChecks;
     Text = Application.ProductName + " v" + Application.ProductVersion;
 }