Advanced Forum Search Results
-
I am trying to get c# to call ironpython and have types from other assemblies import-able into the script. The following code does not work for me, it says it cannot find the name Colors
ScriptRuntime runtime = Python.CreateRuntime();
ScriptEngine engine = runtime.GetEngine("py");
ScriptScope scope = ...
-
I know the desktop CLR has the CodeBase attribute, which has the functionality to download rarely used compiled code from the internet, and it all just works. I've seen articles for silverlight about dynamically downloading assemblies manually, but is there a "It just works" way to do this?
Thanks,
Todd Wilder
-
http://quince.infragistics.com/#/Search/ViewPattern$pattern=Alternative+Views/PatternExamples$index=3
here is a working example from infragistics, I'd like to know how they do this. They Change the url querystring along with their silverlight content, and it all seems to happen very nicely, I thought if you went to a different url, ...
-
see here for an example
http://www.pagebrooks.com/demos/colorpicker/ColorPicker.html
there are gray vertical lines on each object with a background, solid or lineargradient,
i've tried clipping and overlapping and and rotating and scaling, nothing seems to get rid of these lines, sometimes on the left, sometimes on the right, but ...
-
I tend to use comboboxes more than popups (and gut the combobox popup content and place my own stuff inside), and I do comboboxes within comboboxes, it behaves quite well
-
If a use a popup control and set its child to a stackpanel and the stackpanel has children and I focus the first one and hit "TAB" the focus does not seem to iterate through the panels children.
Any Ideas why?
-
Nevermind, sorry, locking started working fine
-
I have a combobox and on its Loaded event I go make a web service call to populate its dropdownitems and set the selected item to the first item in the Items collection, This obviously happens async, On the callback I actually populate the items and set the selected value. The combobox is inside a tab control with two tabs. When I swich between ...
-
The images are a product catalogue. Product managers can update images, add new, remove etc. all the time. The images are currently in a SQL Server database, but I could move them to file storage instead on the server and retain a pointer within the database.
From what I learned in DB class Databases always perform better with pointers to ...
-
So if the images aren't dynamic, you can store them in the XAP file and refer to them in XAML like the following...
http://msdn.microsoft.com/en-us/library/cc296240(VS.95).aspx
// if they are dynamic, and need to come from the net, then I dunno why you're using an ImageConverter. What about good old fashioned
// <Image ...