I totally agree. I may not love Windows 11, but I agree (and often point out) that the anti-11 hype is way over blown. I kind of suspect that as people are forced off Windows 10 onto the (likely) Windows 11 25H2 we will hear a ton of people acting like Windows 11 is finally usable for the first time. Hey, if that is their opinion, fine, but I can't help but wonder if they would have had the same option had they been forced onto version 23H2 or 24H2.
I have often thought this as well!! Why make a menu when 80% of the time Uninstall is the only option, and the other 20% of the time Repair is the only other option? That UI has plenty of room for those to appear as buttons...which would be more touch friendly too, something MS claims to care about.
People might assume I am a Win11 fan/supporter because I frequently call out what I preserve to either be exaggerations or misinformation about Windows 11. I try not to ever take sides. Just because I disagree with a statement made, doesn't mean I agree with the opposition, or even disagree with the sentiment behind the person making the statement.
I have on occasion gotten in disagreements with people making overly glossy statements about Windows 11 or Windows in general, just like I have (on other forums) gotten into political disagreements with people who are on my side (to the extent having a "side" is even a thing when it comes to complex issues).
Like any human, I am far from perfect, but I try my best to not be dogmatic with my thoughts.
Question
James Rose
Hello gang,
I am learning WPF and I need to animate a UserControl that has been added during runtime
XAML
C# code to add UserControl (BediaMenu.BMenu)
var bmnuBediaMenu = new BediaMenu.BMenu();
bmnuBediaMenu.Margin = new Thickness(40, MenuTop, 40, 20);
bmnuBediaMenu.MenuText = MenuTitle;
bmnuBediaMenu.Height = this.MenuSize;
bmnuBediaMenu.Width = this.ActualWidth - 80;
this.BediaGrid.Children.Add(bmnuBediaMenu);
[/CODE]
I attempted to use the code from this page: http://stackoverflow.com/questions/4214155/wpf-easiest-way-to-move-image-to-x-y-programmatically But when it gets to the last line; story.Begin(this); it errors with this statement: "'BediaMenu' name cannot be found in the name scope of 'BediaNVMain.MainWindow'." I have attempted several options... but with no success.
Any thoughts?
Link to comment
https://www.neowin.net/forum/topic/1051139-cwpf-animate-a-usercontrol/Share on other sites
36 answers to this question
Recommended Posts