0
내 응용 프로그램의 탭에 내 Google 캘린더를 표시하려고합니다. 내가 어떻게 해?C# Windows에서 Google 캘린더 표시 Windows Form
private void tabPage6_Click(object sender, EventArgs e)
{
//I want to add the code in this tab
}
내 응용 프로그램의 탭에 내 Google 캘린더를 표시하려고합니다. 내가 어떻게 해?C# Windows에서 Google 캘린더 표시 Windows Form
private void tabPage6_Click(object sender, EventArgs e)
{
//I want to add the code in this tab
}
컨트롤에는 WeBrowser
컨트롤이 필요합니다. 드래그 앤 도구에서 WebBrowser
컨트롤의 WebBrowser
제어의 가정 해 이름을 드롭 코드 아래 사용하여 빠른 응답을위한 일정을
private void tabPage6_Click(object sender, EventArgs e)
{
webBrowser1.Navigate("https://www.google.com/calendar/");
webBrowser1.Show();`
}
감사를 엽니 다 그런데 왜 "apprear이 메시지는 이름의 달력이 현재에 존재하지 않는
webBrowser1
입니다 문맥 "! 및이 링크를 살펴 보겠습니다. -> https://developers.google.com/google-apps/calendar/quickstart/dotnet thanks again :) –업데이트 된 코드 – Mostafiz
을 사용해보세요. 디버깅 할 때 아무것도 확인 한 –