You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
716 B
30 lines
716 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
|
|
namespace PCScreenSavers
|
|
{
|
|
class MainApp
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
|
|
App app = new App();
|
|
app.InitializeComponent();
|
|
//if (args.Count() > 0)
|
|
//{
|
|
// string[] str = args[0].ToString().Split('|');
|
|
// if (str.Count() > 1)
|
|
// {
|
|
// app.HttpUrl = str[0];
|
|
// app.LocalIP = str[1];
|
|
// }
|
|
//}
|
|
//app.HttpUrl = args[0];
|
|
app.Run();
|
|
}
|
|
}
|
|
}
|
|
|