WPF Application启动界面设置——


                                  
本文章已收录于:
                     

    设置WPF从不同界面启动可以通过设置“StartupUri”属性完成。

    http://blog.csdn.net/bamboo_slit/article/details/7164848

    设置StartupUri参数时,根路径为项目路径。下面代码是设置以项目路径下View目录里的CreateWO页面为启动界面。

    [html]  view plain copy
    1. <Application x:Class="RCMS_MVVM.App"  
    2.              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
    3.              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    4.              xmlns:vm="clr-namespace:RCMS_MVVM.ViewModel"  
    5.              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"  
    6.              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
    7.              xmlns:local="clr-namespace:RCMS_MVVM"  
    8.              <span style="color:#ff0000;">StartupUri="View/CreateWO.xaml"  
    9. </span>             mc:Ignorable="d">  
    10.       
    11.     <Application.Resources>  
    12.         <!--Global View Model Locator-->  
    13.         <vm:ViewModelLocator x:Key="Locator"  
    14.                              d:IsDataSource="True" />  
    15.   
    16.       <ObjectDataProvider x:Key="Resources" ObjectType="{x:Type local:CulturesHelper}"  
    17.                 MethodName="GetResourceInstance"/>  
    18.     <ObjectDataProvider x:Key="CultureResourcesDS" ObjectType="{x:Type local:CulturesHelper}" />  
    19.         
    20.   </Application.Resources>  
    21.       
    22. </Application>  

    下面代码是设置以项目路径下MainWindow页面为启动界面。

    [html]  view plain copy
    1. <Application x:Class="RCMS_MVVM.App"  
    2.              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
    3.              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    4.              xmlns:vm="clr-namespace:RCMS_MVVM.ViewModel"  
    5.              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"  
    6.              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
    7.              xmlns:local="clr-namespace:RCMS_MVVM"  
    8.              <span style="color:#ff0000;">StartupUri="MainWindow.xaml"  
    9. </span>             mc:Ignorable="d">  
    10.       
    11.     <Application.Resources>  
    12.         <!--Global View Model Locator-->  
    13.         <vm:ViewModelLocator x:Key="Locator"  
    14.                              d:IsDataSource="True" />  
    15.   
    16.       <ObjectDataProvider x:Key="Resources" ObjectType="{x:Type local:CulturesHelper}"  
    17.                 MethodName="GetResourceInstance"/>  
    18.     <ObjectDataProvider x:Key="CultureResourcesDS" ObjectType="{x:Type local:CulturesHelper}" />  
    19.         
    20.   </Application.Resources>  
    21.       
    22. </Application>  

    评论
    添加红包

    请填写红包祝福语或标题

    红包个数最小为10个

    红包金额最低5元

    当前余额3.43前往充值 >
    需支付:10.00
    成就一亿技术人!
    领取后你会自动成为博主和红包主的粉丝 规则
    hope_wisdom
    发出的红包
    实付
    使用余额支付
    点击重新获取
    扫码支付
    钱包余额 0

    抵扣说明:

    1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
    2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

    余额充值