Files
PCK-Studio/MinecraftUSkinEditor/Forms/creatorSpotlight.cs
2021-01-30 13:19:58 -05:00

58 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf.Forms
{
public partial class creatorSpotlight : MetroFramework.Forms.MetroForm
{
string data;
public creatorSpotlight()
{
InitializeComponent();
}
private void creatorSpotlight_Load(object sender, EventArgs e)
{
try
{
using (WebClient getData = new WebClient())
{
data = getData.DownloadString("https://textuploader.com/103da/raw");
webBrowser1.ScrollBarsEnabled = false;
var embed = "<html><head>" +
"<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\"/>" +
"</head><body style=\"background-color: #000000;\">" +
"<iframe width=\"720\" height=\"439\" src=\"{0}\"" +
"frameborder = \"0\" allow = \"autoplay; encrypted-media\" allowfullscreen></iframe>" +
"</body></html>";
var url = "https://www.youtube.com/embed/" + data;
this.webBrowser1.DocumentText = string.Format(embed, url);
}
}
catch
{
this.Close();
}
}
private void buttonOpenInBrowser_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://www.youtube.com/watch?v=" + data);
using (WebClient track = new WebClient())
{
string trackClick = track.DownloadString("http://nobledez.com/creatorSpotlight.php");
}
}
}
}