//Pass in the full path to the style file on disk public async Task<bool> IsCurrent(string stylePath) { //Add the style to the current project await QueuedTask.Run(() => StyleHelper.AddStyle(Project.Current, stylePath)); StyleProjectItem style = Project.Current.GetItems<StyleProjectItem>().First(x => x.Path == stylePath); //returns true if style matches the current Pro version return style.IsCurrent; }
Target Platforms: Windows 11, Windows 10