Advanced Forum Search Results
-
I am converting a sl 2 application that uses a autocomplete control to sl 3.
It seems that the namespace has changed for this.
Is the autocomplete now part of the main package or still part of the toolkit install?
-
cool, will give it a shot, thanks.
-
I wrote a elaborate search function in a static class I called control helper.
So instead of using the standard find method, I used.
TextBlock test = (TestBlock)ControlHelper.FindName(this, "MyTextblockName").
What this method does is it uses the control you send in the first parameter's find method to see if t can find any ...
-
So there is no default way of doing it, you have to do a bit of gymnastics.
O well, thanks dude.
-
I wrote a custom control that is a color picker.
It works the same way as a combobx would in that you click a button and you get a drop down that shows you the colors.
I ran into a small problem in that if the control is in a clip rect and you drop it down, part of the drop down gets cut off as you would expect.
I want to force the control to ...
-
Sweet, it works great.
Such a obvious problem that I feel kind of stupid, but you will be amazed how stupid obvious things sometimes drive me around the bend.
Your help much appreciated dude.
-
I want to create a simple list box that binds a class that has a color property.
I created a listbox and a item template for the listbox.
In the item template I have a rectangle that binds the fill property of the rectagle.
Fill="{Binding ItemColor}"
If I hard code the rectangle color it shows fine so the rectangle is visible.
So ...
-
I published a test version of a silverlight app and that worked fine.
Then I made some changes and published again using visual studio and it seemed as if no changes were updated.
Deleted all temp internet files and refreshed, with no difference.
I deleted the files off the server and published again and still the versions did not seem to ...
-
ok so i now add the popup to :
(Page) Application.Current.RootVisual
And it works, so that is great, one line of code 2 days of heart ake gone.
To be honest, I do hate you for that, but I just loooooooove you right now.
Thanks m8 u r a life saver.
-
The errors that i showed are two different grids.
The first grid is the developer express AgDataGrid, nothing fancy.
Auto create column is on and show group panel.
The second grid is a silverlight native grid and the columns get created dynamically.
The part that cought my eye is the popup part.
The screens that these grids live on is ...