Advanced Forum Search Results
-
I am having a binding issue with the datepicker control my scenario is as follows.
I have a user control with the following datepicker control inside of it -
<basics:DatePicker x:Name="dtpTradeDate" SelectedDate="{Binding TradeDate}" />
I then change the DataContext of the user control based on the ...
-
Thats great news many thanks for your help Jeff.
-
Thanks for the reply Jeff. Initially I wasn't aware of the SelectedItem property as I couldnt see it appearing in my XAML intellisense but I did spot it in a few other posts that I think you actually replyed to.
However I got the impression that using this property for my scenario is not feasible as you cannot bind to it as ...
-
Thanks for the reply murtaza I tried increasing the minimum prefix length unfortunatly this has had no effect and the events in question are still being raised on each keystroke.
I think I get what your saying about the textbox behind the scenes loosing focus when the suggestion list is populated. I am getting the feeling ...
-
I am having an issue doing TwoWay databinding to an AutoCompleteBox I have seen a couple of forum posts which I think are very similar but I haven't been able to spot any resolutions.
<controls:AutoCompleteBox x:Name="acbBroker" MinimumPrefixLength="0" Text="{Binding BrokerRef, Mode=TwoWay, ...
-
Hi mr.saif I have included the xaml for my datagrid below. I have only included 1 of the 20 columns as they are all pretty much the same just showing different numbers and things.You will notice the use of converters on the stackpanel and text colour which I am sure won't help matters unfortunatly its a financial application that requires the ...
-
I have a datagrid which currently has about 20 columns (I know it's alot but our end users all have widescreens so they need them all!) and around 200 rows although the number of rows can be significantly higher. I have noticed that the datagrids scrollbar can go a little bit scatty at times i.e it moves by itself when you hover the ...
-
Thanks for the help guys much appreciated.
-
I am trying to get a confirmation prompt working using a message box when a button is clicked.
I have the following code which works fine if I click the button, however if I tab to the button and press enter the MessageBox.Show method throws a "System.ExecutionEngineException". My button is in a user control but I don't ...
-
Thanks Jonathan will take a look.