
| 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?
| <telerik:GridViewDataColumn Header="Jahr" DataMemberBinding="{Binding datum}" DataFormatString="{}{0:yyyy}" /> |
| <telerik:GridViewDataColumn Header="Monat" DataMemberBinding="{Binding datum}" DataFormatString="{}{0:MMM}" /> |
| <telerik:GridViewDataColumn Header="Tag" DataMemberBinding="{Binding datum}" DataFormatString="{}{0:dd}" /> |