繁体   English   中英

以C#Windows形式显示Google日历

[英]Show Google Calendar in C# Windows Form

我想在应用程序的标签中显示我的Google日历。 我该怎么做?

private void tabPage6_Click(object sender, EventArgs e)
{
    //I  want to add the code in this tab
}

您需要为此使用WeBrowser控件。 从工具中拖放一个WebBrowser控件,假设该WebBrowser控件的名称是webBrowser1 ,使用下面的代码打开日历

private void tabPage6_Click(object sender, EventArgs e)
    {
        webBrowser1.Navigate("https://www.google.com/calendar/");
        webBrowser1.Show();`
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM