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.
我有按钮A和按钮B。我有 FrameA 和 Page1 Page2。
问题:
如果我单击 buttonA,我将如何通过 FrameA 显示 Page1?
然后我点击了 buttonB 我将如何通过 FrameA 显示 Page2?
示例会很棒(VB .net 或 c#)
假设您可以添加按钮单击事件,并在该单击事件中进行如下导航
例如:在 buttonA 点击事件中:
FrameA.Navigate(myPage1Object);