예제 #1
0
파일: Common.cs 프로젝트: nuub666/framework
 static void TaskSetAutomationName(FrameworkElement fe, string route, PropertyRoute context)
 {
     if (fe.NotSet(AutomationProperties.NameProperty))
     {
         AutomationProperties.SetName(fe, context.TryToString() ?? "");
     }
 }