Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Avalon

Loading User control at runtime

Update your Vista Drivers Update Your Drivers Now!!
Closed Thread
 
Thread Tools Display Modes
Old 03-17-2006   #1 (permalink)
Srini
Guest


 

Loading User control at runtime

Hello All,
Is it possible to load WPF UserControl in my WPF app using
System.Reflection. I don't want to add reference to the UserControl
assemblies at the compile time.

Though I tried ...

---------------------------------------------
Assembly SampleAssembly;
Type myColorPicker;

SampleAssembly = Assembly.LoadFrom("C:\\Program Files\\Microsoft
SDKs\\Windows\\v1.0\\samples\\AllWinFXsamples\\WindowsPresentationFoundation\\Demos\\ColorPicker\\CSharp\\ColorPickerLib\\bin\\Debug\\ColorPickerLib.dll");

myColorPicker = SampleAssembly.GetTypes()[0];

object ibaseObject = Activator.CreateInstance(myColorPicker);

colorPicker = (Control)ibaseObject;


Grid.SetRow(colorPicker, 0);
Grid.SetColumn(colorPicker, 0);
myGrid.Children.Add(colorPicker);
---------------------------------------------

I am dont see the control.

Is there an alternate way to load a WPF user control without adding
references to the assemblies
Regards
Srini


My System SpecsSystem Spec
Closed Thread

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Control the Maximum allowed User Sessions in Fast User Switching lmlm Vista General 1 03-19-2008 08:19 AM
(Ati Catalyst 7.6) CCC.exe not loading in standard user account GT Vista hardware & devices 1 06-29-2007 07:22 PM
User profiles not loading properly Twisted- Vista account administration 0 06-07-2007 04:02 PM
Loading WPF User Control using HwndSource mr1962 Avalon 2 06-13-2006 03:47 PM
Loading usercontrol at runtime Srini Avalon 1 03-20-2006 11:52 PM


Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51