예제 #1
0
 private static bool IsElementMatch(XamlElementLocalizabilitySettings elm, string elementNs, string elementName)
 {
     return(IsMatchTemplate(elementNs, elm.Namespace) &&
            IsMatchTemplate(elementName, elm.Name));
 }
예제 #2
0
 private static bool IsExactElementMatch(XamlElementLocalizabilitySettings elm, string elementNs, string elementName)
 {
     return(elementNs == elm.Namespace && elementName == elm.Name);
 }