English 中文(简体)
我如何在设计时打开WPF菜单?
原标题:How do I open a WPF menu at design-time?

我在WPF里写菜单,想看看它看起来如何, 不需要启动程序打开菜单。

是否有办法让菜单在设计时保持开放( 这样我可以看到菜单项), 这样我就能看到我所去的改变?

目前我只有2010年的视觉工作室

最佳回答

您可以设置 IsSubmenu Open=“ rue ”, 但如果您单击别处, 菜单将关闭。 重新设置此菜单以打开它 。

问题回答

当您做出更改时, 您应该能够看到设计窗口的更改 。 您是否使用 VS2010 Express? 我发现, 很明显, 当我修改样式时, 设计师没有刷新 - 我不得不关闭/ 重新打开窗体来查看变化的反映 。 您应该不需要建造来查看设计修改, 除非您在设计师处理这些修改之前需要添加新的用户控制等





相关问题
Creating a Style in code behind

Does anyone know how to create a wpf Style in code behind, I can t find anything on the web or MSDN docs. I have tried this but it is not working: Style s = new Style(typeof(TextBlock)); s....

WPF Custom Themes

I have a simple question which is giving me some difficulty. I have downloaded a custom them for WPF of the net. Now i want to apply this theme to my App instead of the default one. How do i do that,...

Is it sometimes bad to use <BR />?

Is it sometimes bad to use <BR/> tags? I ask because some of the first advice my development team gave me was this: Don t use <BR/> ; instead, use styles. But why? Are there negative ...

WPF - How to apply effect to a cropped image?

I have an Image being clipped like so: <Image Width="45" Grid.Column="0" Source="{Binding Photo}"> <Image.Clip> <RectangleGeometry Rect="0,0,45,55" RadiusX="8" RadiusY="8" /...

WPF ListView : Header styling

I want to have a ListView with columns and a particular style: The background for ALL column headers should be transparent except when the mouse is over in one of them. When this happends, the ...

热门标签