本文整理汇总了C#中ListViewModel类的典型用法代码示例。如果您正苦于以下问题:C# ListViewModel类的具体用法?C# ListViewModel怎么用?C# ListViewModel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ListViewModel类属于命名空间,在下文中一共展示了ListViewModel类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ErstkommunionkinderwallfahrtListPage
public ErstkommunionkinderwallfahrtListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<ErstkommunionkinderwallfahrtConfig>.Instance);
this.InitializeComponent();
}
开发者ID:MasterCoder1992,项目名称:BlutWallfahrtWindows10,代码行数:7,代码来源:ErstkommunionkinderwallfahrtListPage.xaml.cs
示例2: NeubrunnListPage
public NeubrunnListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<NeubrunnConfig>.Instance);
this.InitializeComponent();
}
示例3: UbuntuLinksListPage
public UbuntuLinksListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<UbuntuLinksConfig>.Instance);
this.InitializeComponent();
}
示例4: BlutaltarListPage
public BlutaltarListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<BlutaltarConfig>.Instance);
this.InitializeComponent();
}
示例5: TagDerKrankenListPage
public TagDerKrankenListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<TagDerKrankenConfig>.Instance);
this.InitializeComponent();
}
示例6: RundUmDieWallfahrtWalldurnListPage
public RundUmDieWallfahrtWalldurnListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<RundUmDieWallfahrtWalldurnConfig>.Instance);
this.InitializeComponent();
}
开发者ID:MasterCoder1992,项目名称:BlutWallfahrtWindows10,代码行数:7,代码来源:RundUmDieWallfahrtWalldurnListPage.xaml.cs
示例7: FronleichnamListPage
public FronleichnamListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<FronleichnamConfig>.Instance);
this.InitializeComponent();
}
示例8: MombrisListPage
public MombrisListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<MombrisConfig>.Instance);
this.InitializeComponent();
}
示例9: SendYourConfessionsListPage
public SendYourConfessionsListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<SendYourConfessionsConfig>.Instance);
this.InitializeComponent();
}
示例10: ReisemobilWallfahrtListPage
public ReisemobilWallfahrtListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<ReisemobilWallfahrtConfig>.Instance);
this.InitializeComponent();
}
示例11: OberRodernListPage
public OberRodernListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<OberRodernConfig>.Instance);
this.InitializeComponent();
}
示例12: AboutThisApp1ListPage
public AboutThisApp1ListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<AboutThisApp1Config>.Instance);
this.InitializeComponent();
}
示例13: GeschichteDerWallfahrtListPage
public GeschichteDerWallfahrtListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<GeschichteDerWallfahrtConfig>.Instance);
this.InitializeComponent();
}
开发者ID:MasterCoder1992,项目名称:BlutWallfahrtWindows10,代码行数:7,代码来源:GeschichteDerWallfahrtListPage.xaml.cs
示例14: GroerBlutfeiertagListPage
public GroerBlutfeiertagListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<GroerBlutfeiertagConfig>.Instance);
this.InitializeComponent();
}
示例15: RundUmDieBasilikaListPage
public RundUmDieBasilikaListPage()
{
this.ViewModel = ListViewModel.CreateNew(Singleton<RundUmDieBasilikaConfig>.Instance);
this.InitializeComponent();
}