TextBox 에 이벤트 핸들러 연결을 동적으로 다음과 같이 하였을 경우에는 참 난감 하다........휴... TextBox textBox_startDate = new TextBox(); textBox_startDate .MouseLeftButtonUp += new MouseButtonEventHandler(textBlock_start_MouseLeftButtonUp); private void textBlock_start_MouseLeftButtonUp(object sender , MouseButtonEventArgs e) { ~~~~~~~~~ 중 략 ~~~~~~~~~ } 이렇게 TextBox에 이벤트 핸들러 연결을 했을 경우 MouseLeftButtonUp 이벤트는 동작 하지 않으며, MouseLef..