Advanced Forum Search Results
-
Just wondering, is your worst case scenario would be two Obeservable collection <a> and <b>. If that the case, using two seperate datagrid and showing and binding one of them depending on checkbox solves the problem? It does save a lot of coding and much more simpler...or maybe that could be ...
-
Is using ListBox a must? Cauz you can get the same output using datagrid and rowdetailtemplate. When clicked it will expand and other rows detail will collapse.
<data:DataGrid MinHeight="700" x:Name="contacts" RowDetailsVisibility="VisibleWhenSelected">
...
-
Are u sure you r not using floatable window? Cauz child window if u call like as shown below, donot float. Its it default behaviour.
ChildWindow popup = new ChildWindow();
popup.Show();
Please 'Mark As Answer' if it helps you
Sharker
-
AutoComplete is a silverlight toolkit example. So i guess u could see the source and modify it as u need.
See if this helps in anyway
[not related url] http://www.nikhilk.net/Silverlight-AutoComplete.aspx
Thanks
Sharker
-
Hmm, i guess u forgot to assign fixed witdth, try it this way
<UserControl x:Class="DynamicWcfBinding.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
-
Hi, the trick is very simple. Put your datagrid in a canvas and then rotate transform the canvas. In the datatemplate of the datagrid, rotate the text to show horizotally while your datagrid is in -90 rotation.
[link] http://channel9.msdn.com/continuum/tutorials/Transforms/ [this is what you are looking for]
If this post was helpful then ...
-
Hi, this is a SL forum, so i guess if u r looking for SL tutorial, please go here
http://www.silverlight.net/learn/tutorials/
Microsoft learning: http://www.microsoft.com/learning/en/us/Course.aspx?ID=50280A&Locale=en-us
Sharker Khaleed Mahmud
Software Developer
(MCP,MCTS,MCPD[web])
This credits that member, earns you a point and ...
-
Here you go
http://forums.silverlight.net/forums/p/50500/135940.aspx
Please 'Mark As Answer' if it helps you
Sharker Khaleed Mahmud
Software Developer
(MCP,MCTS,MCPD[web])
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
-
For some reason, setting the user control background like that donot works.
See if this way helps in any way
http://forums.silverlight.net/forums/p/139050/310369.aspx#310369
Please 'Mark As Answer' if it helps you
Sharker Khaleed Mahmud
Software Developer
(MCP,MCTS,MCPD[web])
This credits that member, earns you a point and marks your ...
-
Hi use stack panel to show pair to textblock or textbox and assign the stackpanel to a certain position in grid row and column like this
Here u go
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...