반응형

.NET/WPF 5

WPF에서 WebBrowser 컨트롤 스크립트 오류 없애기

MainWindows.xaml MainWindow.cs using System.Windows; namespace WPF_WebBrowser_컨트롤_스크립트_오류_방지 { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void Window_Loaded(object sender, RoutedEventArgs e) { System.Windows.Forms.WebBrowser wb = new System.Windows.Forms.WebBrowser(); wfh.Child = wb; wb.ScriptErrorsSu..

.NET/WPF 2020.07.31

Grid 패널에 배치하기 – CS 코드로 작성하기 [언제나 WPF]

배치할 모습 MainWindow.xaml MainWindow.cs using System.Windows; using System.Windows.Controls; using System.Windows.Media; namespace Grid_실습_cs_코드_이용 { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { TextBlock tb_name; TextBlock tb_age; TextBlock tb_intro; TextBox tbox_name; TextBox tbox_age; TextBox tbox_intro; Button btn_ok; TextBox tb_about; public MainWindow() ..

.NET/WPF 2020.07.08

Kakao API를 이용한 위치 검색 프로그램 만들기 [WPF]

소스 코드 MainWindow.xaml 검색어: MainWindow.cs using System.Collections.Generic; using System.Windows; using System.Windows.Controls; namespace 카카오_API를_이용한_위치_검색 { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void Button_Click(object sender, RoutedEventArgs e) { List mls = KakaoAPI.Search(tbox_query.Text); l..

.NET/WPF 2020.04.27
반응형