반응형

소스 코드 376

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

회원 클래스 정의 – 정적 멤버 캡슐화 [C++]

/* https://ehpub.co.kr C++ 예제 - 언제나 휴일 회원 클래스 정의 - 정적 멤버 필드 캡슐화 */ #include #include using namespace std; class Member { static int last_num; const int num; string name; public: static int GetMemberCount() { return last_num; } Member(string name) :num(++last_num) { this->name = name; } int GetNum()const { return num; } string GetName()const { return name; } virtual string ToString()const { char ..

C++/C++ 예제 2020.07.15

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

.NET 리모팅

공용 라이브러리 (Class 라이브러리로 제작) using System; namespace GeneralLib { public class General:MarshalByRefObject { public string ConverIntToStr(int num) { Console.WriteLine("ConvertIntToStr 메소드 수행(전달 받은 인자:{0})", num); switch(num) { case 0: return "영"; case 1: return "일"; case 2: return "이"; default: return "아직 모르는 수예요."; } } } } 닷넷 리모팅 서버(여기에서는 콘솔 응용으로 제작하였음) using GeneralLib; using System; using System..

반응형