C# Edge 에서 지정한 Tab 닫도록 처리하기
C# Edge 에서 지정한 Tab 닫도록 처리하기 Edge 에서 지정한 Tab 을 닫고 싶을 때 처리하는 방법입니다.열려있는 Tab중에 찾고자 하는 Tab 이름이 유일한 경우 처리가 가능합니다.using System;using System.Diagnostics;using System.Windows;using System.Windows.Automation;using System.Windows.Forms;namespace WpfApp{ /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { public MainWindow()..