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.
我们有一个要求,需要更改我无法更改现有代码的标题。我可以使用现有的命名空间、类似于现有应用程序的可扩展性的库来编写我的 C# 代码。
我的问题是如何根据我的要求从我的代码中更改标题(现有代码已经根据他们的要求更改了标题)
请提出任何更改
谢谢, 拉杰什
for (int i = 0; i < Application.Current.Windows.Count; i++) { var win = Application.Current.Windows[i]; if (win.Title == "MainWindow") win.Title = "LastWindow"; }
我希望这能帮助你给出一个想法。你可以在你的视图项目中的任何地方应用这个代码。