1 回答

TA貢獻(xiàn)1752條經(jīng)驗(yàn) 獲得超4個(gè)贊
根據(jù)您的要求,您可以使用?NavigationView
?作為導(dǎo)航來處理頁面導(dǎo)航,使用 Command 綁定 loaded 事件,然后在加載頁面時(shí)在視圖模型中執(zhí)行。SaveEntry
<interactivity:Interaction.Behaviors>
? ? <core:EventTriggerBehavior EventName="Loaded">
? ? ? ? <core:InvokeCommandAction Command="{x:Bind ViewModel.ViewLoadedCommand}" />
? ? </core:EventTriggerBehavior>
</interactivity:Interaction.Behaviors>
視圖模型
public class MainViewModel : ViewModelBase
{
? ? public RelayCommand ViewLoadedCommand { get; private set; }
? ? public MainViewModel()
? ? {
? ? ? ? ViewLoadedCommand = new RelayCommand(SaveEntry);
? ? }
? ? private void SaveEntry()
? ? {
? ? ? ? // save entry.
? ? }
}
- 1 回答
- 0 關(guān)注
- 253 瀏覽
添加回答
舉報(bào)