示例#1
0
        public string GetThemeSysString(int propertyId)
        {
            var     value = new StringBuilder(512);
            HResult hr    = UxThemeExNativeMethods.GetThemeSysString(
                theme, propertyId, value, value.Capacity);

            return(Found(hr) ? value.ToString() : null);
        }