Advanced Forum Search Results
-
You got me down the right path with this. I was able to implement it great in Silverlight, but in another app, WPF it didn't work.
I was, however armed with this knowledge, able to then go in use the "Right click" on TabControl, "Edit Template", Header Panel -> HorizontalAlignment Right and it now works in ...
-
Quick question: In the newest version of .NET 3.5 (with the new release of Blend 3.0). Has the performance of StaticResources vs. DynamicResources changed?
Eg, StaticResources are slightly more performant then Dynamic, assuming you don't need to change them at render time. They do yield a slightly slower load time ...
-
Got the vertical text rendering great with the LayoutTransform.
Still trying to figure out right justified tabs on the top border.
<TabControl HorizontalContentAlignment="Right" HorizontalAlignment="Right" TabStripPlacement="Top" }">
Did nothing for the actual tab formatting or ...
-
Excellent, thanks!
Found the answer to #2 as well.
<TabControl Margin="0" TabStripPlacement="Left" >
<TabItem Header="Tab1">
<TabItem.LayoutTransform>
<RotateTransform ...
-
Have been playing around with the tab control the last few days and am wondering how to implement it in two different ways.
#1 With the tabs on the top/bottom but right justified (this one, to me, seems like a no brainer and easy one and I have to be missing a setting somewhere).
#2 With the tabs on the left or right ...
-
Given a property on the button control, I can always just enter the ControlLight's name and use this.Parent.FindName, too. Was thinking there was something a bit more straight forward.
ButtonOnClick (object sender, RoutedEventArgs e)
{
ControlLight myLight = ...
-
This is one option that I've considered. Because I have multiple lights and multiple buttons, I'd consider the eventing option somewhat messy. As every light would have to inspect every message to see if it's "theirs". As a fall back, using the MVVM model, I can implement a manager to handle Button/Light ...
-
Good thought, but no, didn't work.
-
I know there's a way to do this, but I can't remember the syntax. Hoping someone here has a clearer head then myself today.
I have two controls, one a custom control PushButton and the other is a custom control ControlLight. When you push the button, the light will turn on/off. Because the light, although ...
-
I have a Silverlight 3.0 site that's deployed for internal network users. A couple of them fail to get the app to load and it just stalls there, white screen with IE being white, Firefox white with "Done" in the lower left. They have Silverlight installed (eg, they don't see the "Install Silverlight" ...