c# 으로 웹브라우저를 만드는 방법은 간단합니다.
윈도우 폼을 생성한뒤
tablelayoutpannel을 추가 하고 속성값의 Dock 을 fill로 설정해 줍니다.
tableLayoutpannel의 열을 하나 제거해주고 상단의 패널을 28로 고정 시켜줍니다.
tableLayoutPannel 첫번째 행에 패널을 다시 추가해주고 Dock 을 fill로 설정합니다.
그리고 margin값을 0으로 하여 여백을 제거합니다.
그리고 tableLayoutPannel 두번째 행에는 도구상자에 webbrowser를 추가 하고 Dock 을 fill로 채워줍니다.
버튼 3개와 텍스박스를 추가 하여줍니다
그리고 각각 더블클릭하여 함수를 만들어 놓습니다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace IEWebBrowser
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void BackButton_Click(object sender, EventArgs e)
{
webBrowser1.GoBack();
}
private void button2_Click(object sender, EventArgs e)
{
webBrowser1.GoForward();
}
private void WebAddressTextBox_TextChanged(object sender, EventArgs e)
{
}
private void AddressMoveButton_Click(object sender, EventArgs e)
{
webBrowser1.Navigate(WebAddressTextBox.Text);
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("www.google.com");
}
}
}
'개발 > c#' 카테고리의 다른 글
C# WebBrowser 자동 로그인 (4) | 2021.04.15 |
---|---|
Boxing UnBoxing (0) | 2021.04.14 |
c# 으로 메모장 만들기 (0) | 2021.04.11 |
Buble Sort (버블소트) 정렬알고리즘 (0) | 2021.04.01 |
10 까지의 합구하기 (0) | 2021.03.31 |