Hello,
I am trying to build a WPF application using Telerik with blend 3. I need to display HTML contents in a portion of my application window. I tried to use 'web browser' control for the purpose, it renders the HTML as desired. But the problem is when I apply a simple animation (change width) for the 'Web browser' control, using story board, the animation doesn’t take effect. I tried to play the story board at design time, animation is played as desired.
Can you please tell me how can I create animation for ‘Web browser’ and if it is possible please specify a sample? Thanks in advance.
Regards,
Haroon

| GridViewImageColumn imgCol = new GridViewImageColumn(); |
| imgCol.ImageStretch = System.Windows.Media.Stretch.None; |
| imgCol.ImageWidth = 16; |
| imgCol.ImageHeight = 16; |
| imgCol.DataMemberBinding = binding; |
I have two Docked windows on the Left and Right side of my GUI
(Similar
to Visual Studio: Solution Explorer on the Left, Properties on the
Right). I want to do the following
1. If I auto-hide the window on the left, it should auto-hide the
window on the Right as well (and vice-versa)
2. If I dock the window on the left, it should dock the window on
the right as well (and vice-versa)
3. If the windows are in Auto-Hide mode, and if the user clicks on
the auto-hide window on left, the auto-hide window on the right should
also expand, and when lost focus. Both should hide at the same time.
Can you tell how can I do this? If possible can you point to some sample code that accomplishes this?
Also is there a event that is fired, when a pane is docked or pinned?