예제 #1
0
파일: Scope.cs 프로젝트: mortend/uno
        public string Register(UXIL.UXPropertySource ps)
        {
            if (!_uxPropertySources.Any(x => x.Node == ps.Node && x.Property.Property == ps.Property.Property))
            {
                _uxPropertySources.Add(ps);
            }

            return(PropertySourceIdentifier(ps));
        }
예제 #2
0
파일: Scope.cs 프로젝트: mortend/uno
 public string PropertySourceIdentifier(UXIL.UXPropertySource uxps)
 {
     return(GetUniqueIdentifier(uxps.Node) + "_" + uxps.Property.Property.Facet.Name.Replace('.', '_') + "_inst");
 }