Advanced Forum Search Results
-
thanks man.... I will try it out .... Thanks again
-
Hi there,
I saw the Hard Rock Deep Zoom website and I noticed that it loads text relative to the image being zoomed in.... I would like to do something similar.... Can someone point me to the right references/articles or something
Thanks
-
Hi there,
I created a blog post on this...
http://marlongrech.wordpress.com/2008/03/22/how-can-i-get-the-datagrid-control-for-silverlight-2-beta-1-to-show-up-in-blend/
Regards
-
Do you have more than one project (i.e assembly)... if the control you created is inside the same project than replace this
clr-namespace:MyNamespace;assembly=MyAssembly
to this
clr-namespace:MyNamespace
Hope it helps
-
You can create multiple ResourceDictionaries (example one for every control) and in the generic.xaml you merge those dictionaries... something like this
http://blogs.msdn.com/nickkramer/archive/2005/09/28/475065.aspx
The XAML in generic.xaml would look like this....
<ResourceDictionary
...
-
May I ask a stupid question? Are you putting items in the Listbox?
-
The Object you are bining to does not have a _result property it has a result property check the name.... Yet I do not see how the DisplayMemberPath could work for you if the property _result does not exist
-
In the ItemsPanelTemplate you should put a panel (such as a StackPanel) not a scrollviewer..... I would suggest that if you want to do a scrollviewer you create a ControlTemplate and put the scrollviewer inside there.... Then use ItemsPresenter to get the value that you set in the ItemsPanelTemplate something like this.....
<ListBox ...