Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的视图的标题中,文本是:BImporter.ViewModels.MainViewModel
我怎样才能改变它(例如:MAIN)??
Screen您可以从或其中一种导体类型派生您的视图模型并设置DisplayName属性。
Screen
DisplayName
public class MyViewModel : Screen { protected override void OnInitialize() { this.DisplayName = "My Name"; } }