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またはコンダクタ タイプの 1 つからビュー モデルを派生させ、DisplayNameプロパティを設定できます。
Screen
DisplayName
public class MyViewModel : Screen { protected override void OnInitialize() { this.DisplayName = "My Name"; } }