User siz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:20:07Z http://stackoverflow.com/feeds/user/7583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820411/wpf-masterdetail-viewmodel-delay-updates-to-master-list-prevent-grid-from-updat/1821538#1821538 0 Answer by siz for WPF MasterDetail ViewModel delay updates to master list. (prevent grid from updating automatically) siz 2009-11-30T18:31:01Z 2009-11-30T18:31:01Z <p>When declaring your field layout for the infragistics data grid, you can use UnboundField instead of Field. This class exposes the BindingPath and BindingMode properties for the underlying binding. Using this technique, you can get rid of the real time update and you shouldn't need a custom control template.</p> <p>My thoughts on moving logic to the VM: </p> <p>Create a one way binding of the grid's DataSource and the nViewModel.List. ApplyChanges can then call: <code>BindingOperations.GetBindingExpressionBase(dependencyObject, dependencyProperty).UpdateTarget();</code> to force the target property DataSource to refresh. Unfortunately, this ties your VM to the binding but results in no code in your view. </p> <p>A big problem here is that if you have this delayed binding scenario, ApplyChanges is something that will really need some IoC into the View because only the View would know how to really do the update (be it using Bindings or whatever). In the end, something along the chain will be managing two instances of a list: the instance in the view and the actual instance in the VM. In this particular scenario, the delayed update seems to be a behavior of the View. However, the UpdateChanges command on the VM actually couples that behavior to the VM, in which case, I'd say it makes sense to store the two list instances in your VM. </p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-void/1820256#1820256 4 Answer by siz for How to test if MethodInfo.ReturnType is type of System.Void? siz 2009-11-30T14:49:33Z 2009-11-30T14:58:12Z <p>When I build this, I get the error:</p> <blockquote> <p>System.Void cannot be used from C# -- use typeof(void) to get the void type object</p> </blockquote> <p>Sounds like that's the answer...</p> http://stackoverflow.com/questions/1758464/whats-a-quick-way-to-convert-an-ienumerablefoo-to-listfoo-in-c-2-0/1758486#1758486 12 Answer by siz for Whats a quick way to convert an IEnumerable<Foo> to List<Foo> in C# 2.0? siz 2009-11-18T19:34:45Z 2009-11-18T19:34:45Z <p>The <a href="http://msdn.microsoft.com/en-us/library/fkbw11z0.aspx" rel="nofollow">List constructor is a good bet</a>.</p> <pre><code>IEnumerable&lt;T&gt; enumerable = ...; List&lt;T&gt; list = new List&lt;T&gt;(enumerable); </code></pre> http://stackoverflow.com/questions/1729800/installing-google-go-on-windows-xp/1729829#1729829 9 Answer by siz for Installing Google Go on Windows XP? siz 2009-11-13T15:13:54Z 2009-11-13T15:13:54Z <p><a href="http://golang.org/doc/go%5Ffaq.html#Why%5Fdoesnt%5FGo%5Frun%5Fon%5FWindows" rel="nofollow">http://golang.org/doc/go_faq.html#Why_doesnt_Go_run_on_Windows</a></p> <blockquote> <p>Why doesn't Go run on Windows?</p> <p>We understand that a significant fraction of computers in the world run Windows and it would be great if those computers could run Go programs. However, the Go team is small and we don't have the resources to do a Windows port at the moment. We would be more than willing to answer questions and offer advice to anyone willing to develop a Windows version.</p> </blockquote> http://stackoverflow.com/questions/1706123/how-to-reference-a-generic-type-in-the-datatype-attribute-of-a-hierarchicaldatate/1708753#1708753 2 Answer by siz for How to reference a generic type in the DataType attribute of a HierarchicalDataTemplate? siz 2009-11-10T15:20:45Z 2009-11-10T15:20:45Z <p>itowlson's approach is a good one but it is just a start. Here's something that will work for your case (and most, if not all, cases):</p> <pre><code>public class GenericType : MarkupExtension { public Type BaseType { get; set; } public Type[] InnerTypes { get; set; } public GenericType() { } public GenericType(Type baseType, params Type[] innerTypes) { BaseType = baseType; InnerTypes = innerTypes; } public override object ProvideValue(IServiceProvider serviceProvider) { Type result = BaseType.MakeGenericType(InnerTypes); return result; } } </code></pre> <p>Then, you are able to create any type with any level of depth in your XAML. For example:</p> <pre><code> &lt;Grid.Resources&gt; &lt;x:Array Type="{x:Type sys:Type}" x:Key="TypeParams"&gt; &lt;x:Type TypeName="sys:Int32" /&gt; &lt;/x:Array&gt; &lt;local:GenericType BaseType="{x:Type TypeName=coll:List`1}" InnerTypes="{StaticResource TypeParams}" x:Key="ListOfInts" /&gt; &lt;x:Array Type="{x:Type sys:Type}" x:Key="DictionaryParams"&gt; &lt;x:Type TypeName="sys:Int32" /&gt; &lt;local:GenericType BaseType="{x:Type TypeName=coll:List`1}" InnerTypes="{StaticResource TypeParams}" /&gt; &lt;/x:Array&gt; &lt;local:GenericType BaseType="{x:Type TypeName=coll:Dictionary`2}" InnerTypes="{StaticResource DictionaryParams}" x:Key="DictionaryOfIntsToListOfInts" /&gt; &lt;/Grid.Resources&gt; </code></pre> <p>There's a few key ideas here:</p> <ul> <li>A generic type has to be specified using the standard <code> notation. So, System.Collections.Generic.List&lt;&gt; is "System.Collections.Generic.List</code>1". The character ` indicates that the type is generic and the number after it indicates the number of generic parameters the type has.</li> <li>The x:Type markup extension is able to retrieve these base generic types quite easily.</li> <li>The generic parameter types are passed as an array of Type objects. This array is then passed into the MakeGenericType(...) call.</li> </ul> http://stackoverflow.com/questions/1705322/wpf-binding-objects-defined-in-codebehind/1705345#1705345 0 Answer by siz for WPF Binding objects defined in codebehind siz 2009-11-10T02:44:35Z 2009-11-10T02:44:35Z <p>In your code behind, set the window's DataContext to the dictionary. In your XAML, you can write:</p> <pre><code>&lt;ListView ItemsSource="{Binding}" /&gt; </code></pre> <p>This will bind the ListView to the dictionary.</p> <p>For more complex scenarios, this would be a subset of techniques behind the <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">MVVM</a> pattern. </p> http://stackoverflow.com/questions/1684568/why-a-view-is-loading-very-slow-for-the-first-time-in-a-prism-composite-wpf-appli/1693951#1693951 1 Answer by siz for Why a View is loading very slow for the first time in a Prism composite wpf application siz 2009-11-07T18:23:43Z 2009-11-07T19:21:58Z <p>Most likely, your View is loading all of the Dev Express and any other Assemblies into memory and JITting them. We see a similar thing in our UI when using the Infragistics WPF Controls.</p> <p>Edit: You cannot really avoid this. The Assemblies need to be loaded and will be JITed on the first run. You can try pre-loading the Assemblies during start up and <a href="http://www.codeproject.com/KB/dotnet/pre%5FJIT.aspx" rel="nofollow">pre-jitting the assemblies</a>. You won't be able to simply execute this on another UI thread, because now your grid will be owned by different thread than your container, so it will not work.</p> <p>In a Data Grid, you will see a significant amount of time being spent drawing the elements. Usuaully what will happen is that the grid control will create all of the row and cell UI elements and will need to bind those to your data. All in all, a rather large number of WPF UI elements will be created which, inherently, takes up a decent amount of time.</p> http://stackoverflow.com/questions/1596796/net-unable-to-cast-object-to-interface-it-implements/1596831#1596831 0 Answer by siz for .NET: Unable to cast object to interface it implements siz 2009-10-20T19:36:42Z 2009-10-20T19:36:42Z <p>If the class <strong>FPG.H60.AFF.TabControlH60</strong> actually does implement IFrameworkClient there should be no reason this would fail. The only thing I can think of that causes this exception is if the assembly that contains IFrameworkClient is strongly named and the Tab Control object happens to reference a different version of the containing assembly or your are using a different interface with the name IFrameworkClient.</p> http://stackoverflow.com/questions/1566803/wcf-datacontract-marking-member-isrequiredfalse/1566835#1566835 0 Answer by siz for WCF DataContract - marking member IsRequired=false siz 2009-10-14T14:53:53Z 2009-10-14T14:53:53Z <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datamemberattribute%5Fmembers.aspx" rel="nofollow">DataMember</a>'s IsRequired tells the serialization engine whether the value of StrB must be presented in the underlying XML. </p> <p>So over the wire you can get <code>&lt;MyObj&gt;&lt;/MyObj&gt;</code> and it will deserialize into an MyObj instance just fine.</p> <p>Edit: You can't actually initialize a instance of MyObj without StrB being present. The use for this is compatibility and extensibility. For example, maybe the client doesn't have the updated MyObj version and it doesn't have StrB present. In this case, the server code can mark StrB as not requried and there will not be a serialization exception when a message is received on the server side. </p> http://stackoverflow.com/questions/1262770/wpf-add-page-w-functionality-into-a-window-at-runtime-as-xaml/1488853#1488853 1 Answer by siz for WPF: Add Page w/functionality into a Window at runtime as XAML siz 2009-09-28T19:18:53Z 2009-09-28T19:26:04Z <p>I find this question a bit unclear, but here's something that worked for me. </p> <p>Define MyModule as:</p> <pre><code>&lt;Page x:Class="WpfApplication3.MyModule" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="300" Width="300"&gt; &lt;/Page&gt; public partial class MyModule : Page { public MyModule() { InitializeComponent(); this.Content = new TextBlock(new Run("WOW!")); } } </code></pre> <p>Created a standalone file called MyModuleStandalone.xaml:</p> <pre><code>&lt;local:MyModule xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:local="clr-namespace:WpfApplication3;assembly=WpfApplication3" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;/local:MyModule&gt; </code></pre> <p>The code below works. When I show c, it displays a text block with the text "WOW!".</p> <pre><code>FileStream xamlFile = new FileStream("MyModuleStandalone.xaml", FileMode.Open, FileAccess.Read); MyModule c= (MyModule)XamlReader.Load(xamlFile); this.Content = c; </code></pre> <p>The local var c is an instance of MyModule so all of the code from that class is available. Is this what you're looking for? </p> <p>You cannot use the x:Class attribute in your standalone XAML file because this implies the XAML is a partial class and the rest of the class is declared somewhere else. XamlReader just won't support it.</p> <p>Remember that when you read in a XAML file, you are <strong>reading in a serialized object</strong>. There is no way to dynamically inject code behind into an arbitrary standalone xaml file.</p> http://stackoverflow.com/questions/1486519/add-icon-for-toolwindow-in-wpf/1486865#1486865 1 Answer by siz for Add Icon for ToolWindow in WPF siz 2009-09-28T12:53:46Z 2009-09-28T12:53:46Z <p>Have you tried the <a href="http://msdn.microsoft.com/en-us/library/system.windows.window.icon.aspx" rel="nofollow">Window.Icon</a> property?</p> http://stackoverflow.com/questions/1484924/what-namespace-must-be-used-to-get-a-datagridcomboboxcolumn/1484935#1484935 1 Answer by siz for What namespace must be used to get a DataGridComboBoxColumn? siz 2009-09-28T00:40:22Z 2009-09-28T00:45:59Z <p>Assembly WpfToolkit, namespace: Microsoft.Windows.Controls.</p> http://stackoverflow.com/questions/1455926/xml-attributes-vs-xml-inside-properties/1455949#1455949 2 Answer by siz for Xml attributes vs Xml inside properties? siz 2009-09-21T18:10:05Z 2009-09-21T18:10:05Z <p>It really depends on how the XML is going to be used. My general rule of thumb is:</p> <ul> <li>For simple types (int, double, string, datetime) use attributes.</li> <li>For complex types, use child elements.</li> </ul> http://stackoverflow.com/questions/1427147/sortedlist-sorteddictionary-and-dictionary/1427158#1427158 11 Answer by siz for SortedList<>, SortedDictionary<> and Dictionary<> siz 2009-09-15T13:23:44Z 2009-09-15T13:23:44Z <ol> <li><p>When iterating over the elements in either of the two, the elements will be sorted. Not so with Dictionary.</p></li> <li><p><a href="http://msdn.microsoft.com/en-us/library/ms132319.aspx" rel="nofollow">MSDN</a> addresses the difference between SortedList and SortedDictionary. </p></li> </ol> <p>From MSDN:</p> <p>The SortedDictionary(TKey, TValue) generic class is a binary search tree with O(log n) retrieval, where n is the number of elements in the dictionary. In this respect, it is similar to the SortedList(TKey, TValue) generic class. The two classes have similar object models, and both have O(log n) retrieval. Where the two classes differ is in memory use and speed of insertion and removal:</p> <p>SortedList(TKey, TValue) uses less memory than SortedDictionary(TKey, TValue).</p> <p>SortedDictionary(TKey, TValue) has faster insertion and removal operations for unsorted data: O(log n) as opposed to O(n) for SortedList(TKey, TValue).</p> <p>If the list is populated all at once from sorted data, SortedList(TKey, TValue) is faster than SortedDictionary(TKey, TValue).</p> http://stackoverflow.com/questions/1423655/editable-datagrid-in-wpf/1427089#1427089 0 Answer by siz for Editable Datagrid in WPF siz 2009-09-15T13:09:57Z 2009-09-15T13:09:57Z <p>It could be any of a number of things. Please take a look at <a href="http://blogs.msdn.com/vinsibal/archive/2008/10/01/overview-of-the-editing-features-in-the-wpf-datagrid.aspx" rel="nofollow">this article</a>. </p> <p>The problem is most likely that you are binding to a collection view that does not support adding items. I believe that the grid might be expecting a collection view that implements <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.ieditablecollectionview%5Fmembers.aspx" rel="nofollow">IEditableCollectionView</a> or <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.ibindinglist.aspx" rel="nofollow">IBindingList</a>, interfaces that support adding items. </p> http://stackoverflow.com/questions/1411808/wpf-simple-binding-q-binding-visibility-to-control-in-different-class/1412291#1412291 1 Answer by siz for WPF: Simple Binding Q: binding visibility to control in different class siz 2009-09-11T17:33:56Z 2009-09-14T18:45:17Z <p>The name Window1 is not in the context of user control. </p> <p>Can you use the code below?</p> <pre><code>&lt;WpfApp2:ViewTree Visibility="{Binding IsChecked, Converter={StaticResource BooleanToVisibilityConverter}, ElementName=radioButton_Tree}" /&gt; &lt;WpfApp2:ViewTab Visibility="{Binding IsChecked, Converter={StaticResource BooleanToVisibilityConverter}, ElementName=radioButton_Tab}" /&gt; &lt;RadioButton x:Name="radioButton_Tree" GroupName="View" IsChecked="True"&gt; Tree View &lt;/RadioButton&gt; &lt;RadioButton x:Name="radioButton_Tab" GroupName="View" IsChecked="False" &gt;Tab View&lt;/RadioButton&gt; </code></pre> http://stackoverflow.com/questions/1412375/trying-to-understand-the-point-of-constraints-am-i-on-the-right-track/1412399#1412399 4 Answer by siz for Trying to understand the point of constraints - am I on the right track? siz 2009-09-11T17:58:10Z 2009-09-11T17:58:10Z <p>Not exactly. Constraints are used to specify what behaviors and/or types a generic parameter can exhibit.</p> <p>For example, if you declare a class:</p> <pre><code>class GenericDisposableHandler&lt;T&gt; { public void DoOperationOnT(T someVariable) { // can't really do much with T since its just an object type } } </code></pre> <p>and know for a fact that the generic parameter T should always be something that implements IDisposable, you would do:</p> <pre><code>class GenericDisposableHandler&lt;T&gt; where T : IDiposable { public void DoOperationOnT(T someVariable) { // Now you can treat T as IDisposable someVariable.Dispose(); } } </code></pre> <p>There are <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">many other constraint types you can use</a>. </p> http://stackoverflow.com/questions/1406982/get-the-style-of-a-control-staticresource-xtype-textblock-in-code-behind/1412317#1412317 0 Answer by siz for Get the Style of a Control {StaticResource {x:Type TextBlock}} in code behind siz 2009-09-11T17:39:43Z 2009-09-11T17:39:43Z <p>The <a href="http://msdn.microsoft.com/en-us/library/ms750950.aspx" rel="nofollow">StaticResource</a> Markup Extension essentially tries to find a resource for the defines key. If the default style for the TextBlock type can be retrieved using: <code>{StaticResource {x:Type TextBlock}}</code> you should be able to get it in code using:</p> <pre><code>var defaultTextBlockStyle = FindResource(typeof(TextBlock)); </code></pre> <p>Of course, this needs to be called in a context in which the FindResource methods is defined. I used it inside my main Window class and it works.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1172475/what-software-do-i-need-to-install-to-use-wpf-in-vs2005/1406190#1406190 3 Answer by siz for What software do i need to install to use WPF in VS2005 siz 2009-09-10T16:03:25Z 2009-09-10T17:14:28Z <p>You can get them from here: <a href="http://download.cnet.com/The-Visual-Studio-2005-extensions-for-NET-Framework-3-0-WCF-WPF-November-2006-CTP/3000-10250%5F4-10727672.html" rel="nofollow">http://download.cnet.com/The-Visual-Studio-2005-extensions-for-NET-Framework-3-0-WCF-WPF-November-2006-CTP/3000-10250_4-10727672.html</a>. </p> <p>This was the last version Microsoft released before telling everyone to go with VS2008. If you can't do VS2008, this is an ok solution. We used it for a year and a half and have production UIs running based on it. The problems are that the designer is basically non-existent (so be ready to code XAML by hand), it can be a bit slow, and there's some bugs.</p> <p>Re: 3.5, VS 2005 is incapable of handling 3.5 projects, linq, etc. If you really want, you can work outside of VS and just use msbuild 3.5. An interesting fact: .Net 3.5 replaces, among some libraries, the PresentationFramework assembly. The new version of this assembly includes additional methods and method signatures that are not included in .Net 3.0. <strong>This means that these new 3.5 methods will be accessible in VS2005.</strong></p> http://stackoverflow.com/questions/1375701/is-there-a-way-to-use-parameterinfo-and-propertyinfo-interchangeably/1375738#1375738 1 Answer by siz for Is there a way to use ParameterInfo and PropertyInfo Interchangeably ? siz 2009-09-03T20:25:17Z 2009-09-03T20:25:17Z <p>No, there is not.</p> <p>Those two classes represent two very different concepts. </p> <p>A property is an attribute on an Type. The PropertyInfo class will allow you to set or get the value and will tell you additional information about the Property.</p> <p>A parameter is an attribute of a method signature (an accessor on a type can have a parameter as well). The ParameterInfo class represents this concept and can tell you the Type of the parameter, the position in the method signature, whether it is an out or ref parameter, etc. See: <a href="http://msdn.microsoft.com/en-us/library/system.reflection.parameterinfo%5Fmembers.aspx" rel="nofollow">MSDN doc</a>. A ParameterInfo is not directly associated to a Type.</p> http://stackoverflow.com/questions/1338229/how-do-i-let-my-usercontrols-use-the-same-styles-as-app-xaml/1338276#1338276 2 Answer by siz for How do I let my UserControls use the same styles as App.xaml? siz 2009-08-27T00:23:48Z 2009-08-27T00:23:48Z <p>Can you post a sample of what you mean? The only case in which your issue can occur is if the User Control is created and then rendered outside your application's visual tree.</p> <p>The XAML below works for me:</p> <p>App.xaml:</p> <pre><code>&lt;Application x:Class="WpfApplication1.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;Style TargetType="{x:Type TextBlock}" x:Key="myStyle"&gt; &lt;Setter Property="Foreground" Value="Green" /&gt; &lt;Setter Property="FontWeight" Value="Bold" /&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>Window1.xaml:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:local="clr-namespace:WpfApplication1" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;local:UserControl1 /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>UserControl1.xaml:</p> <pre><code>&lt;UserControl x:Class="WpfApplication1.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;TextBlock Style="{StaticResource myStyle}"&gt;HEY!&lt;/TextBlock&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/1330489/can-someone-demystify-the-yield-keyword/1330517#1330517 4 Answer by siz for Can someone demystify the yield keyword? siz 2009-08-25T19:44:08Z 2009-08-25T19:44:08Z <p>Take a look at the <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx" rel="nofollow">MSDN</a> documentation and the example. It is essentially an easy way to create an iterator in C#.</p> <pre><code>public class List { //using System.Collections; public static IEnumerable Power(int number, int exponent) { int counter = 0; int result = 1; while (counter++ &lt; exponent) { result = result * number; yield return result; } } static void Main() { // Display powers of 2 up to the exponent 8: foreach (int i in Power(2, 8)) { Console.Write("{0} ", i); } } } </code></pre> http://stackoverflow.com/questions/1252199/can-i-use-xamlreader-load-or-initializefromxaml-from-a-wpf-window-for-the-window/1252676#1252676 0 Answer by siz for Can I use XamlReader.Load or InitializeFromXaml from a WPF Window, for the Window definition? siz 2009-08-10T00:27:55Z 2009-08-10T00:27:55Z <p>Yes. When you created a Window in xaml, the auto-generated partial definition includes a method called InitializeComponent. The contents of this method are essentially:</p> <pre><code>System.Uri resourceLocater = new System.Uri("/SampleWpfApp;component/window1.xaml", System.UriKind.Relative); System.Windows.Application.LoadComponent(this, resourceLocater); </code></pre> <p>So what you want, is to call <code>System.Windows.Application.LoadComponent(windowInstance, uri);</code></p> http://stackoverflow.com/questions/1241885/wpf-clickonce-installs-but-nothing-happens/1244284#1244284 1 Answer by siz for WPF ClickOnce installs, but nothing happens siz 2009-08-07T11:36:44Z 2009-08-07T11:36:44Z <p>There's a few things you do.</p> <p>To check whether there is an unhandled exception you can:</p> <ol> <li>Attach a <a href="http://msdn.microsoft.com/en-us/library/system.windows.application.dispatcherunhandledexception.aspx" rel="nofollow">Dispatcher Exception Handler</a> on your System.Windows.Application object.</li> <li>Listen to the <a href="http://msdn.microsoft.com/en-us/library/system.appdomain.unhandledexception.aspx" rel="nofollow">UnhandledException event</a> on the AppDomain.</li> </ol> <p>In these you can catch any unhandled exceptions, log them and figure things out. </p> <p>Another technique that we use to attach a debugger is that we have a piece of code in our initialization logic that says that if the CTRL key is pressed, a little message box pops up before anything occurs in the app with the text "starting up". This is our chance to attach a debugger and figure things out.</p> http://stackoverflow.com/questions/1188196/wpf-passing-variable-to-converter-inside-data-template/1188558#1188558 0 Answer by siz for WPF, passing variable to converter inside data template siz 2009-07-27T14:39:45Z 2009-07-27T14:39:45Z <p>You can use the binding object as follows:</p> <pre><code>&lt;Binding Source="{x:Static local:DataObject.MyData}" /&gt; </code></pre> <p>See: <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/c94682e5-ad16-42f9-973f-fd7588a9c0b5" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/c94682e5-ad16-42f9-973f-fd7588a9c0b5</a>.</p> http://stackoverflow.com/questions/1087539/forcing-configurationmanager-to-reload-all-sections 0 Forcing ConfigurationManager to reload all sections siz 2009-07-06T15:12:28Z 2009-07-06T15:12:28Z <p>I am writing a configuration system in which the app.config file is dynamically constructed from various config fragments distributed across multiple locations. The system currently works as follows:</p> <ol> <li>Bootstrapper builds configuration file.</li> <li>Bootstrapper initializes new AppDomain with new config file as the configuration file.</li> <li>As a result, new AppDomain is configured to use new config file and all works fine.</li> </ol> <p>We'd like to move away from this multiple AppDomain approach; it adds a layer of complexity, especially when it comes to unmanaged libraries and other legacy code.</p> <p>In moving to one AppDomain, the workflow would change to:</p> <ol> <li>Bootstrapper builds configuration file.</li> <li>Bootstrapper merges the configuration file into its own configuration file.</li> <li><strong>Bootstrapper refreshes its ConfigurationManager cache.</strong></li> <li>Bootstrapper launches main app in the same AppDomain.</li> </ol> <p>It seems that the ConfigurationManager caches sections in memory. So for example, if I read the AppSettings before step #3, I have to call: <code>ConfigurationManager.RefreshSection("appSettings");</code> In fact, I have to make sure that any section that has been used by the bootstrapper, is refreshed. </p> <p>I am able to iterate over all of the config sections in the new config file and force refresh them, but, this forces the configuration manager to load any assemblies referenced in the config file. I'd like to defer this if possible. If there a way to invalidate what the ConfigurationManager currently has in memory?</p> http://stackoverflow.com/questions/583505/what-are-the-issues-with-running-wpf-across-multiple-appdomains-on-one-ui-thread 1 What are the issues with running WPF across multiple AppDomains on one UI thread? siz 2009-02-24T20:43:37Z 2009-07-01T18:00:02Z <p>We are looking at creating a WPF UI that runs across multiple AppDomains. One of the app domains would run the application while the remaining AppDomains would host a series of user controls and logic. The idea, of course, is to sandbox these User Controls and the logic away from the main application.</p> <p><a href="http://www.codeplex.com/clraddins/Release/ProjectReleases.aspx?ReleaseId=9454" rel="nofollow">Here</a> is an example of doing this using MAF/System.AddIn. What are some of the experiences other have had with this? How does this solution handle RoutedEvents/Commands that might occur inside one user control and do these get properly serialized across AppDomains? What about WPF resources? Can they be accessed across AppDomains seamlessly?</p> http://stackoverflow.com/questions/964870/c-wcf-return-an-xmldocument/964922#964922 0 Answer by siz for C#: wcf return an XmlDocument? siz 2009-06-08T13:26:01Z 2009-06-08T13:26:01Z <p>The DataContractSerializer can serialize XmlElement instances. So just return the DocumentElement property of your XmlDocument instance. See: <a href="http://msdn.microsoft.com/en-us/library/ms733901.aspx" rel="nofollow">MSDN</a>.</p> http://stackoverflow.com/questions/939677/signing-assemblies-basics/939728#939728 1 Answer by siz for signing assemblies - basics siz 2009-06-02T13:58:12Z 2009-06-02T14:04:12Z <p>It means to give the assembly a unique identity. This is done so there exists a guarantee that an assembly came from a particular source. <a href="http://msdn.microsoft.com/en-us/library/wd40t7ad%28VS.71%29.aspx" rel="nofollow">See msdn article</a>. A strong-named assembly supports <a href="http://msdn.microsoft.com/en-us/library/fdhkd3a5.aspx" rel="nofollow">Side by Side Execution</a>, <a href="http://msdn.microsoft.com/en-us/library/2h3sywsc.aspx" rel="nofollow">Assembly placement in the GAC</a>, <a href="http://msdn.microsoft.com/en-us/library/51ket42z.aspx" rel="nofollow">Versioning</a>, and a few other features.</p> <p>The simplest way to sign is using the project properties in Visual Studio, the signing tab. This actually adds an XML entry in the csproj file that tells the build engine to sign the assembly with said key file. The key file is this ".snk" file we are speaking off. It is generated using the <a href="http://msdn.microsoft.com/en-us/library/k5b5tt23%28VS.71%29.aspx" rel="nofollow">sn.exe .Net tool</a>. It contains all information necesary to sign an Assembly.</p> http://stackoverflow.com/questions/930442/why-do-people-disassemble-net-clr-binaries/930747#930747 0 Answer by siz for Why do people disassemble .NET (CLR) binaries? siz 2009-05-30T22:15:35Z 2009-05-30T22:15:35Z <p>I have used it in the following, an more, cases:</p> <ol> <li>Had trouble with an internal assembly to which I did not have the source code for.</li> <li>Needed to figure out how a particular third-party controls library looks for a run-time license.</li> <li>Needed to find out how the .Net license compiler works. (Just placed lc.exe inside Reflector)</li> <li>Used it to make sure I had the correct build of certain libraries.</li> </ol> http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-void Comment by siz on How to test if MethodInfo.ReturnType is type of System.Void? siz 2009-11-30T14:53:15Z 2009-11-30T14:53:15Z what error are you getting when building that code? http://stackoverflow.com/questions/1729800/installing-google-go-on-windows-xp/1730579#1730579 Comment by siz on Installing Google Go on Windows XP? siz 2009-11-13T20:22:33Z 2009-11-13T20:22:33Z good work. officially not supported, but do let us know if there's a work around. +1 http://stackoverflow.com/questions/1691707/how-do-i-disable-the-opening-and-closing-animation-of-the-dropdown-of-a-combobox Comment by siz on How do I disable the opening and closing animation of the DropDown of a ComboBox in WPF? siz 2009-11-07T02:31:21Z 2009-11-07T02:31:21Z What OS are you running? I'm running XP and this does not occur using WPF's ComboBox control. http://stackoverflow.com/questions/1566803/wcf-datacontract-marking-member-isrequiredfalse/1566835#1566835 Comment by siz on WCF DataContract - marking member IsRequired=false siz 2009-10-14T15:03:52Z 2009-10-14T15:03:52Z Yes, that's what I'm saying. I don't know if your DataContract will work though. I'm not sure whether DataMember requires public getter/setter. You cannot instantiate MyObj with StrA but not StrB using the code above. If you create another version of MyObj that does not contain StrB, then you could. http://stackoverflow.com/questions/1521211/how-do-i-avoid-changing-the-stack-size-and-avoid-getting-a-stack-overflow-in-c/1521350#1521350 Comment by siz on How do I avoid changing the Stack Size AND avoid getting a Stack Overflow in C# siz 2009-10-05T17:53:52Z 2009-10-05T17:53:52Z Good point. In fact, your code is essentially a breadth first traversal of the nodes as opposed to a depth first approach from the OP. http://stackoverflow.com/questions/1262770/wpf-add-page-w-functionality-into-a-window-at-runtime-as-xaml/1263161#1263161 Comment by siz on WPF: Add Page w/functionality into a Window at runtime as XAML siz 2009-09-28T19:13:28Z 2009-09-28T19:13:28Z Are you saying you want to inject arbitrary code behind to this XAML file? Where is your code behind located? http://stackoverflow.com/questions/1486519/add-icon-for-toolwindow-in-wpf Comment by siz on Add Icon for ToolWindow in WPF siz 2009-09-28T12:54:29Z 2009-09-28T12:54:29Z What exactly do you mean when you say ToolWindow? http://stackoverflow.com/questions/1484924/what-namespace-must-be-used-to-get-a-datagridcomboboxcolumn/1484935#1484935 Comment by siz on What namespace must be used to get a DataGridComboBoxColumn? siz 2009-09-28T00:49:30Z 2009-09-28T00:49:30Z You might have forgotten to include something. :) I just popped open a WPF project in 2008 and could reference the type from Assembly WpfToolkit. http://stackoverflow.com/questions/1482430/why-is-system-windows-shape-path-sealed/1482546#1482546 Comment by siz on Why is System.Windows.Shape.Path sealed? siz 2009-09-27T03:06:42Z 2009-09-27T03:06:42Z How would this approach not work? An attached property can be of any type. http://stackoverflow.com/questions/1172475/what-software-do-i-need-to-install-to-use-wpf-in-vs2005/1172583#1172583 Comment by siz on What software do i need to install to use WPF in VS2005 siz 2009-09-10T16:04:37Z 2009-09-10T16:04:37Z It's available on download.com. See my response below. http://stackoverflow.com/questions/1338229/how-do-i-let-my-usercontrols-use-the-same-styles-as-app-xaml/1338276#1338276 Comment by siz on How do I let my UserControls use the same styles as App.xaml? siz 2009-08-27T00:33:01Z 2009-08-27T00:33:01Z No, that should not matter. I recommend, if possible, that you add some code to your question. It will be easier to diagnose that way. http://stackoverflow.com/questions/1237761/wpf-trigger-not-null Comment by siz on WPF Trigger not null siz 2009-08-06T11:17:11Z 2009-08-06T11:17:11Z This is a duplicate: <a href="http://stackoverflow.com/questions/356194/wpf-datatrigger-where-value-is-not-null" rel="nofollow" title="wpf datatrigger where value is not null">stackoverflow.com/questions/356194/&hellip;</a> http://stackoverflow.com/questions/1220288/what-are-the-best-recommended-video-cards-for-wpf/1220295#1220295 Comment by siz on What are the best / recommended video cards for WPF siz 2009-08-03T01:15:03Z 2009-08-03T01:15:03Z Not necessarily the case that the CPU will be the bottle neck. We had had numerous situations in which our app based on 3rd party controls ran flawlessly on desktops with WPF-supported video cards and very slowly otherwise. http://stackoverflow.com/questions/939677/signing-assemblies-basics/939728#939728 Comment by siz on signing assemblies - basics siz 2009-07-08T11:51:24Z 2009-07-08T11:51:24Z That's why I mention the sn.exe tool. This tool is included in the .Net 2.0 framework and Mono also includes it. http://stackoverflow.com/questions/1042078/net-guitar-chord-library/1042256#1042256 Comment by siz on .NET Guitar Chord Library siz 2009-07-07T19:25:14Z 2009-07-07T19:25:14Z It's not easy to generate chords programatically. Technically, there are many, many ways to play a C maj chord, but most of them are either unused (say, above the 12th fret) or incredibly awkward, physically speaking. I'd think that the best we can do is a data set of known guitar chords and the OP can render in whichever way he wants. Sadly, don't know of such a data set.