 |
|
 |
All WinRT discussions are now in Windows API and WinRT[^]
cheers,
Chris Maunder
The Code Project | Co-founder
Microsoft C++ MVP
|
|
|
|
 |
|
 |
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|
 |
|
 |
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|
 |
|
 |
Hello,
I have a button which opens a popup.
I want the option - if user clicks in any place outside of this button or popup so it will be closed. otherwise it will be on screen.
How can i do it?
|
|
|
|
 |
|
 |
Hi,
Can anybody please tell me,
How I can move the expand collapse to the right hand side, instead of default left hand side ?? without changing the left side margin..
i mean tree view should be same as it is but the expand collapse only should move to right
|
|
|
|
 |
|
 |
Hi all,
I want to merge cells of a datagrid, using silverlight 4. How do I do?
Thank you very much for your attention.
|
|
|
|
 |
|
|
 |
|
 |
Hello,
I have a popup which is opened on button click.
<Popup Name="MenuPopUp" IsOpen="False" PlacementTarget="{Binding ElementName=dropDownbtn}" Placement="Top" LostFocus="MenuPopUp_LostFocus" MouseLeftButtonDown="MenuPopUp_MouseLeftButtonDown">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<MenuItem Grid.Row="0" Name="ViewReportItem" Header="View Report" Command="{Binding ViewReportCommand}"/>
<MenuItem Grid.Row="1" Name="ExportReportItem" Header="Export Report" Command="{Binding ExportReportCommand}"/>
<MenuItem Grid.Row="2" Name="AbortReportItem" Header="Abort Report" Command="{Binding AbortReportCommand}"/>
</Grid>
</Popup>
I want the popup to stay on screen unless i click somewhere else in the UserControl.
This UserControl is small part of a big UserControl which is working using MVVM and PRISM
How can i do it?
|
|
|
|
 |
|
 |
Hello,
I have a button and a context menu on it.
I want to align the context menu to be opened on top of the button. I mean on the Upper Left corner of the button. How can i do it in XAML?
currently i use the code:
Button Grid.Column="1" BorderThickness="0" Name="dropDownbtn" Click="dropDownbtn_Click" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
<Image Source="/AQUA.ClientServices.Presentation;component/Images/dropDown.png" ClipToBounds="True" />
<Button.ContextMenu>
<ContextMenu BorderThickness="0" Name="LeftClickMenu" MouseLeave="LeftClickMenu_MouseLeave">
<MenuItem Name="ViewReportItem" Header="View Report" Command="{Binding ViewReportCommand}"/>
<MenuItem Name="ExportReportItem" Header="Export Report" Command="{Binding ExportReportCommand}"/>
<MenuItem Name="AbortReportItem" Header="Abort Report" Command="{Binding AbortReportCommand}"/>
</ContextMenu>
</Button.ContextMenu>
</Button>
|
|
|
|
 |
|
 |
The easiest way to do this is to use the ContextMenuService on the button itself. So, in your button definition, add ContextMenuService.Placement="Top"
|
|
|
|
 |
|
 |
OK.
Another issue is that this context menu opened on left mouse click on button.
But it never enters the can_execute .
But when i click Right Mouse Button it does enters can_execute.
How to solve it?
|
|
|
|
 |
|
 |
When I change an instance of an item in a collection, how do I refresh the View without reloading the entire collection?
Right now I'm doing something like:
var temp1 = Products;
Products = null;
Products = temp1;
Callinf RaisePropertyChanged doesn't do it.
Everything makes sense in someone's mind
|
|
|
|
 |
|
 |
I'm a bit confused by your question here. Are you just refreshing an individual property in a single item in the Products list? If so, just raise the PropertyChanged event on that property. Perhaps if you could describe the actual scenario you've got I might be able to offer some more advice.
|
|
|
|
 |
|
 |
Sorry, let me clarify...
I have a list of . If I change a single Product in the list, the item in my tree or list doesn't refresh. Calling RaisePropertyChanged("Products") will refresh the whole collection. To get that to work I have to reload the entore list.
So how do I update the UI so that only the changed item is refreshed?
Everything makes sense in someone's mind
|
|
|
|
 |
|
 |
FYI, you didn't properly encode <ProductModel>, so it doesn't show up (browser thinks it's an HTML tag). To others: he has a list of <ProductModel>.
|
|
|
|
 |
|
 |
Also, perhaps you could use an ObservableCollection? When an item changes, replace that item in the collection.
|
|
|
|
 |
|
 |
If a single item changes in your ProductItem object, simply call RaisePropertyChanged on that item. For instance:public string ProductName
{
get { return productName; }
set
{
if (productName == value) return;
productName = value;
RaisePropertyChanged("ProductName");
}
}If you change the whole item, simply calling RaisePropertyChanged with an empty string will force every bound property in that item to be updated in the binding.
modified yesterday.
|
|
|
|
 |
|
 |
Looks like you've got a PRE penumbra.
|
|
|
|
 |
|
 |
This is what happens when you are typing code comments in VS and the editor at the same time.
|
|
|
|
 |
|
 |
Sounds like you're saying that every property on every model should call property changed?
Everything makes sense in someone's mind
|
|
|
|
 |
|
 |
Only the ones that change.
|
|
|
|
 |
|
 |
This may be caused by not have OnPropertyChanged implemented in your model (item in the list).
Our first design had the model in the WCF, this did not allow the event in the model to be used by the view. By moving the models into a separate project that is referenced by both the WCF and the UI we not get the events on the items.
Never underestimate the power of human stupidity
RAH
|
|
|
|
 |
|
 |
A short time ago, I started learning WPF (with C#). I learned how to create styles and to embed them.
My style contains
<Style x:Key="RoundedButton" TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Rectangle Fill="{TemplateBinding Background}" Stroke="Black" RadiusX="8" RadiusY="8"/>
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Background" Value="{StaticResource GreenGradientBrush}"/>
<Style.Triggers>
<Trigger Property="Button.IsFocused" Value="true">
<Setter Property = "Background" Value="{StaticResource RedGradientBrush}"/>
</Trigger>
<Trigger Property="Button.IsMouseOver" Value="true">
<Setter Property = "Background" Value="{StaticResource GoldGradientBrush}"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="AcceptButton" TargetType="{x:Type Button}" BasedOn="{StaticResource RoundedButton}">
<Setter Property="Background" Value="{StaticResource BlueGradientBrush}"/>
<Setter Property="Content" Value="_OK" />
<Setter Property="IsDefault" Value="true" />
</Style>
When I add the AcceptButton to a Window, the underline of "_OK" shows up, and clicking ALT+O does not have any effect.
How can I get the accelerator key working?
|
|
|
|
 |
|
 |
Your template is missing something. Change your ContentPresenter so that you use the access key. All you need to do is add RecognizesAccessKey="True" like this:<ContentPresenter RecognizesAccessKey="True" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
 |
|
 |
Thanks! That did the trick.
|
|
|
|
 |