当我使用函数运行Main_win.xaml时,wpf页面不显示任何内容App.xaml:
<Application x:Class="test.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:salesandwarehousingsystem"
ShutdownMode="OnExplicitShutdown"
Startup = "Application_Startup" >
</Application>
App.xaml.cs:
private void Application_Startup(object sender, StartupEventArgs e)
{
Main_win main_Win = new Main_win();
main_Win.ShowDialog();}
主要_win.xaml:
<Window x:Class="test.window.Main_win"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:salesandwarehousingsystem.window"
xmlns:custom="http://schemas.microsoft.com/winfx/2006/xaml/presentation/ribbon"
mc:Ignorable="d"
Title="Main_win" Height="660" Width="1300">
<Grid>
<Ribbon >
<Ribbon.QuickAccessToolBar>
<RibbonQuickAccessToolBar >
<RibbonSplitButton >
<RibbonSplitMenuItem Header=" About Us"/>
<RibbonSplitMenuItem Header=" Contact Us"/>
<RibbonSplitMenuItem Header=" Exit"/>
</RibbonSplitButton>
</RibbonQuickAccessToolBar>
</Ribbon.QuickAccessToolBar>
<Button Content="Button" Height="21" Width="136"/>
</Ribbon>
<Button Content="Button" Margin="561,282,422,282"/>
</Grid>
结果:
无论您添加什么...按钮或任何对象...结果都一样
3条答案
按热度按时间wlzqhblo1#
我运行了你给我看的代码。
它显示了一个填充的窗口,尽管有绑定错误。
对于已修复的错误,请从RibbonWindow继承Main_win。
第一个
brccelvz2#
Win_Login.xaml.cs
p8ekf7hl3#
@EldHasp谢谢你的帮助。Main_win页面的问题解决了。但是我有另一个页面有这个问题
Win_Login.xaml.cs文件系统:
}
xaml文件名:
现在这个页面没有任何装订问题...