모니터 해상도1 모니터 해상도(Tip) WPF에서 모니터의 실제 해상도를 가져오는 간단한 프로그램입니다. xaml code cs code using System.Windows; namespace WPFScreen { public partial class Window1 : Window { public Window1() { InitializeComponent(); this.Loaded += new RoutedEventHandler(Window1_Loaded); } void Window1_Loaded(object sender, RoutedEventArgs e) { txWidth.Text = SystemParameters.PrimaryScreenWidth.ToString(); txHeigh.Text = SystemParameters.PrimarySc.. 2008. 9. 15. 이전 1 다음