User ControlBreak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:39:16Z http://stackoverflow.com/feeds/user/24472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1576623/itemscontrol-virtualizingstackpanel-and-scrollviewer-height 2 ItemsControl, VirtualizingStackPanel and ScrollViewer height ControlBreak 2009-10-16T07:28:07Z 2009-10-16T14:34:35Z <p>I want to display a important list of items using an ItemsControl.</p> <p>The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm working on: The sample code provided only reflects the sizing problem I have.</p> <p>I would like :</p> <ul> <li>the ItemsControl to be virtualized because there is many items to display</li> <li><p>its size to expand to its parent container automatically (the Grid)</p> <p></p> <pre><code>&lt;Grid&gt; &lt;ItemsControl x:Name="My" ItemsSource="{Binding Path=Names}"&gt; &lt;ItemsControl.Template&gt; &lt;ControlTemplate&gt; &lt;StackPanel&gt; &lt;StackPanel&gt; &lt;TextBlock Text="this is a title" FontSize="15" /&gt; &lt;TextBlock Text="This is a description" /&gt; &lt;/StackPanel&gt; &lt;ScrollViewer CanContentScroll="True" Height="400px"&gt; &lt;VirtualizingStackPanel IsItemsHost="True" /&gt; &lt;/ScrollViewer&gt; &lt;/StackPanel&gt; &lt;/ControlTemplate&gt; &lt;/ItemsControl.Template&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;TextBlock Text="{Binding}" /&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; &lt;/Grid&gt; </code></pre> <p></p></li> </ul> <p>The code behind is :</p> <pre><code>public partial class Page1: Page { public List&lt;string&gt; Names { get; set; } public Page1() { InitializeComponent(); Names = new List&lt;string&gt;(); for(int i = 0; i &lt; 10000; i++) Names.Add("Name : " + i); My.DataContext = this; } } </code></pre> <p>As I force the ScrollViewer height to 400px, ItemsControl virtualization works as I expect: The ItemsControl displays the list very quickly, regardless of how many items it contains.</p> <p>However, if I remove Height="400px", the list will expand its height to display the whole list, regardless its parent container height. Worse: it appears <em>behind</em> its container.</p> <p>Putting a scrollviewer around the ItemsControl gives the expected visual result, but the virtualization goes away and the list takes too much time to display.</p> <p>How can I achieve both automatic height expansion and virtualization of my ItemsControl ?</p> http://stackoverflow.com/questions/1475824/using-the-hovermenu-extender-with-asp-net-treeview-nodes 0 Using the HoverMenu extender with ASP.NET TreeView nodes ControlBreak 2009-09-25T06:59:35Z 2009-10-16T08:16:57Z <p>I would like to use the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/HoverMenu/HoverMenu.aspx" rel="nofollow">HoverMenu extender</a> of the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Default.aspx" rel="nofollow">Ajax Control Toolkit</a> with every branches of an ASP.NET TreeView.</p> <p>The problem is that this extender does not seems to be designed to handle a TreeView.</p> <p>Is there a workaround or some code adaptation to do in my custom treeview (that uses custom nodes) to allow me to use this extender ?</p> http://stackoverflow.com/questions/1576679/reason-not-to-use-linq/1576697#1576697 1 Answer by ControlBreak for Reason not to use LINQ ControlBreak 2009-10-16T07:53:03Z 2009-10-16T07:53:03Z <p>Please have a look at <a href="http://stackoverflow.com/questions/215548/whats-the-hardest-or-most-misunderstood-aspect-of-linq">this topic</a> : it may help you to have an answer.</p> http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf 4 Looking for C# equivalent of scanf ControlBreak 2009-01-23T07:41:25Z 2009-09-30T21:46:53Z <p>I used to code in C language in the past and I found the <em>scanf</em> function very usefull. Unfortunately, there is no equivalent in C#.</p> <p>I am using using it to parse semi-structured text files.</p> <p>I found an interresting example of <em>scanf</em> implementation <a href="http://www.codeproject.com/KB/recipes/csscanf.aspx" rel="nofollow">here</a>. Unfortunately, it looks old and uncomplete.</p> <p>Do anyone knows a <em>scanf</em> C# implementation ? Or at least something that would work as a reversed <em>string.Format</em> ?</p> http://stackoverflow.com/questions/28377/iif-vs-if/1459868#1459868 0 Answer by ControlBreak for IIf() vs. If ControlBreak 2009-09-22T12:45:28Z 2009-09-22T12:45:28Z <p>Better use If instead of IIf to use the type inference mechanism correctly (Option Infer On)</p> <p>In this example, Keywords is recognized as a string when I use If :</p> <pre><code>Dim Keywords = If(String.IsNullOrEmpty(SelectedKeywords), "N/A", SelectedKeywords) </code></pre> <p>Otherwise, it is recognized as an Object :</p> <pre><code>Dim Keywords = IIf(String.IsNullOrEmpty(SelectedKeywords), "N/A", SelectedKeywords) </code></pre> http://stackoverflow.com/questions/1106238/asp-net-treeview-strange-postback-behavior/1420231#1420231 0 Answer by ControlBreak for ASP.Net Treeview: Strange postback behavior ControlBreak 2009-09-14T08:00:38Z 2009-09-14T09:10:10Z <p>Hello,</p> <p>This <a href="http://forums.asp.net/p/1109208/1713613.aspx#1713613" rel="nofollow">forum entry</a> may answer the question :</p> <p>Basically, it is said a custom treeview control has to be used. CreateNode function must be overriden to instanciate the right TreeNode type. Here, it would be ExtensionRangeTreeNode instead of "CustomTreeNode".</p> <pre><code>public class CustomTreeView : TreeView { protected override TreeNode CreateNode() { return new CustomTreeNode(this, false); } } </code></pre> <p>Of course, you will have to add the ExtensionRangeTreeNode(Treeview treeview, bool isRoot) constructor signature to your current ExtensionRangeTreeNode implementation.</p> http://stackoverflow.com/questions/822503/wcf-inheritance-polymorphism-and-serialization/1394584#1394584 0 Answer by ControlBreak for WCF Inheritance/Polymorphism and Serialization ControlBreak 2009-09-08T15:14:58Z 2009-09-08T15:14:58Z <p>Hello,</p> <p>This thread may probably help a lot : <a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/dd9adca0-7422-4d51-bd79-487dafe3386d/" rel="nofollow">WCF Inheritance and DataContract</a></p> http://stackoverflow.com/questions/12369/vs2008-sp1-crashes-when-debugging-an-xslt-file/1007063#1007063 2 Answer by ControlBreak for VS2008 SP1 crashes when debugging an XSLT file ControlBreak 2009-06-17T13:34:43Z 2009-06-17T13:34:43Z <p>Yes, sounds so. To use it, I had to disable VSS temporarily each time by setting Tools, Options, Source Control, Plug-in selection, Current source control plug-in to "None".</p> http://stackoverflow.com/questions/828086/html-editing-in-winforms-or-wpf-apps/955840#955840 0 Answer by ControlBreak for HTML Editing in WinForms or WPF apps ControlBreak 2009-06-05T13:25:38Z 2009-06-05T13:25:38Z <p>I have found this <a href="http://www.itwriting.com/htmleditor/" rel="nofollow">editor</a> that does not requires Microsoft.mshtml. However, it requires some additional works to get a nice formatting buttons bar around.</p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175620#175620 143 Answer by ControlBreak for What's the most egregious pop culture perversion of programming? ControlBreak 2008-10-06T18:35:47Z 2009-05-19T15:54:54Z <p>In Mission Impossible, an electronic transfer of a big amount of money takes as long as a big file upload. It takes so long that it requires a progress bar...</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/641805#641805 13 Answer by ControlBreak for What's your favorite "programmer" cartoon? ControlBreak 2009-03-13T08:10:43Z 2009-03-13T08:10:43Z <p><img src="http://www.usalyze.com/wp-content/dilbert-200209233.gif" alt="alt text" /></p> <p>Could have happened to me (as an UI designer...)</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/340256#340256 1 Answer by ControlBreak for What real life bad habits has programming given you? ControlBreak 2008-12-04T11:21:35Z 2008-12-04T11:21:35Z <p>Let my grandma believe I do <a href="http://fr.wikipedia.org/wiki/Donut" rel="nofollow">pastry</a> as I told her I work on <em>dotNET</em>.</p> http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/304560#304560 2 Answer by ControlBreak for What Is the most beautiful code you have ever seen or written? ControlBreak 2008-11-20T07:29:59Z 2008-11-20T07:29:59Z <p>Believe me or not, <a href="http://thedailywtf.com/Articles/Stupid-Coding-Tricks-The-TSQL-Madlebrot.aspx" rel="nofollow">this draw a ASCII Mandelbrot</a> using T-SQL. Awesome.</p> http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code 4 How to deal with great products written with crappy code ? ControlBreak 2008-11-12T10:23:13Z 2008-11-12T13:54:53Z <p>I was asked to improve and maintain an internal Web application used and approved by an important community of users. This includes performance improvements and adding features.</p> <p>Unfortunately, the code is bloated, sometimes very poorly written, and hard to read and change. This makes changes much more difficult to implement.</p> <p>Despite all of this, the application is good-looking, useful, and users like it and want changes.</p> <p>That's why I feel like I have been fooled. Is it really better to write crappy code for quicker great result and glory, then leave for great new projects leaving such an amount of problems behind ?</p> <p>I have read a lot about this topic on <a href="http://codinghorror.com" rel="nofollow">Coding Horror</a> already, but I would like to read more from people here who are experiencing this sad reality, and how they are dealing with it. I might probably need to be given some courage too ;)</p> <p><em>As my primary language is not English, please feel free to rewrite this question with better grammar.</em></p> http://stackoverflow.com/questions/280313/merge-xdocument/280512#280512 3 Answer by ControlBreak for Merge XDocument ControlBreak 2008-11-11T10:20:14Z 2008-11-11T10:20:14Z <p>I tried a bit myself :</p> <pre><code>var MyDoc = XDocument.Load("File1.xml"); MyDoc.Root.Add(XDocument.Load("File2.xml").Root.Elements()); </code></pre> <p>I dont know whether it is good or bad, but it works fine to me :-)</p> http://stackoverflow.com/questions/280313/merge-xdocument 2 Merge XDocument ControlBreak 2008-11-11T08:14:55Z 2008-11-11T10:20:14Z <p>Hello,</p> <p>I am trying to merge several XML files in a single XDocument object.</p> <p>Merge does not exist in XDocument object. I miss this.</p> <p>Has anyone already implemented a Merge extension method for XDocument, or something similar ?</p> http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/194212#194212 0 Answer by ControlBreak for What frustrates you the most at your current workplace? ControlBreak 2008-10-11T15:37:22Z 2008-10-11T15:37:22Z <p>Internet filtering softwares !</p> http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/190993#190993 6 Answer by ControlBreak for What frustrates you the most at your current workplace? ControlBreak 2008-10-10T12:10:33Z 2008-10-10T12:10:33Z <p>What bothers me, it's the people who work mainly with the mouth. Everything is always easier with the mouth...</p> http://stackoverflow.com/questions/104270/flash-vs-silverlight/190290#190290 2 Answer by ControlBreak for Flash vs. Silverlight ControlBreak 2008-10-10T05:59:12Z 2008-10-10T05:59:12Z <p>There is a valuable blog where the author compares Silverlight and Flash from a developer and end-user point of view.</p> <p>Both Silverlight and Flash running the same use cases are shown, the code can be downloaded and the users can up/down about the best one.</p> <p>I consider this site as a great Silverlight vs Flash resource.</p> <p><a href="http://www.shinedraw.com/" rel="nofollow">http://www.shinedraw.com/</a></p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187215#187215 35 Answer by ControlBreak for What is the best comment in source code you have ever encountered? ControlBreak 2008-10-09T13:19:37Z 2008-10-09T13:19:37Z <pre><code>Repeat ... Until (JesusChristsReturn) ' Not sure </code></pre> http://stackoverflow.com/questions/186895/automatic-namespaces-import/186913#186913 2 Answer by ControlBreak for Automatic namespaces import ControlBreak 2008-10-09T11:53:55Z 2008-10-09T11:53:55Z <p>When the red caret appears at the end of your member, just hit SHIFT+ALT+F10, then use arrows keys to choose the right option.</p> http://stackoverflow.com/questions/186581/when-do-you-design-the-gui-first-and-the-backend-code-later-or-vice-versa/186594#186594 1 Answer by ControlBreak for When do you design the GUI first and the backend code later, or vice versa? ControlBreak 2008-10-09T09:56:28Z 2008-10-09T09:56:28Z <p>I think writing the GUI first and showing a quick prototype to the end-user helps both to share the same vision of the final product. IMHO, I consider server-side code as not dependant on GUI code.</p> http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/186560#186560 10 Answer by ControlBreak for What was your first programming language? ControlBreak 2008-10-09T09:42:10Z 2008-10-09T09:42:10Z <p>TI-Basic on a TI99 4/A, then TI-Extended Basic, powered by hardware handled sprites :)</p> http://stackoverflow.com/questions/140602/how-do-i-call-a-wcf-webservice-from-silverlight/186458#186458 1 Answer by ControlBreak for How do I call a WCF webservice from Silverlight? ControlBreak 2008-10-09T08:57:25Z 2008-10-09T08:57:25Z <p>If the Silverlight application is not hosted in the same domain that exposes the Web service you want to call, then cross-domain restrictions applies.</p> <p>If you want the Silverlight application to be hosted in another domain than the web service, you may want to have a look on <a href="http://timheuer.com/blog/archive/2008/06/10/silverlight-services-cross-domain-404-not-found.aspx" rel="nofollow">this post</a> to help you to have a cross domain definition file, or to write a middle "proxy" instead.</p> http://stackoverflow.com/questions/81406/parser-for-c/186103#186103 -2 Answer by ControlBreak for Parser for C# ControlBreak 2008-10-09T06:19:55Z 2008-10-09T06:19:55Z <p>You may want to give <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> a try.</p> http://stackoverflow.com/questions/184153/useful-developer-resources-in-second-life/184342#184342 1 Answer by ControlBreak for Useful Developer Resources in Second Life ControlBreak 2008-10-08T19:02:27Z 2008-10-08T19:02:27Z <p>As far I'm concerned, I'm trying to contribute to the <a href="http://opensimulator.org" rel="nofollow">OpenSim</a> project which is a OpenSource clone of the SecondLife server infrastructure, written in C# and Mono.</p> <p>OpenSim is SL like, enhanced with many additional script commands, open grid protocols, with customized modules and plugins. It definitely worth a look if you dont already heard about it.</p> http://stackoverflow.com/questions/182389/game-project-development/182434#182434 1 Answer by ControlBreak for Game project development ControlBreak 2008-10-08T12:16:23Z 2008-10-08T12:16:23Z <p>Just for your information, there is a very interresting OpenSource BSD licensed project called <a href="http://opensimulator.org" rel="nofollow">OpenSim</a> which consists in recreating server side <a href="http://www.secondlife.com" rel="nofollow">SecondLife</a> infrastructure in both C# and Mono.</p> <p>It seems to correspond with what your friend and you wants to do. Although still in Alpha stage, it is pretty stable and definitely worth a try.</p> http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/182360#182360 2 Answer by ControlBreak for Company insists on using a binary format for all our documentation ControlBreak 2008-10-08T11:58:46Z 2008-10-08T11:58:46Z <p>MS Word supports document changes tracking and peer review.</p> <p>The new MS Office format is fully XML based (to see this, rename a MS Word .docx file to a .zip, then unpack it to see).</p> <p>Maybe Office 2007 may fit both your company requirements and your concerns ?</p> http://stackoverflow.com/questions/181718/why-cant-i-debug-my-asp-net-web-app/181748#181748 1 Answer by ControlBreak for Why can't I debug my asp.net web app ControlBreak 2008-10-08T07:55:33Z 2008-10-08T07:55:33Z <p>ligget78 said it first ^^</p> <p>Try to delete completely web.config and let Visual Studio recreate it, if possible.</p> http://stackoverflow.com/questions/178389/when-does-a-dropdownlist-retain-the-value-from-postback-at-the-selectedindexchang/178397#178397 1 Answer by ControlBreak for When does a DropDownList retain the value from postback at the SelectedIndexChanged Event Handler ControlBreak 2008-10-07T13:19:40Z 2008-10-07T13:19:40Z <p>Maybe some initialization is performed twice in the on_load event because you dont check the page is posted back using <a href="http://msdn.microsoft.com/fr-fr/library/system.web.ui.page.ispostback(VS.80).aspx" rel="nofollow">IsPostBack</a> in a test ?</p> <p>It exactly happens to one of my colleague ten minutes ago :-)</p> http://stackoverflow.com/questions/1576623/itemscontrol-virtualizingstackpanel-and-scrollviewer-height/1578422#1578422 Comment by ControlBreak on ItemsControl, VirtualizingStackPanel and ScrollViewer height ControlBreak 2009-10-19T06:28:46Z 2009-10-19T06:28:46Z +1, it's working exactly as expected :) Thanks a lot ! http://stackoverflow.com/questions/1164220/how-can-i-change-a-portion-of-a-string-in-the-linden-scripting-language-lsl/1164715#1164715 Comment by ControlBreak on How can I change a portion of a string in the Linden Scripting Language (LSL)? ControlBreak 2009-10-16T10:51:30Z 2009-10-16T10:51:30Z This is definitely not the right answer :( http://stackoverflow.com/questions/1576245/what-c-book-would-you-suggest-for-c-c-programmer/1576302#1576302 Comment by ControlBreak on What C# book would you suggest for C/C++ programmer? ControlBreak 2009-10-16T06:39:13Z 2009-10-16T06:39:13Z +1, Indeed : I rode it. Although it is not specifically C# oriented (examples are given in some Java like pseudo language), it gives very good advices and is very pleasant to read. http://stackoverflow.com/questions/1357308/how-can-i-close-the-browser-from-an-xbap/1357331#1357331 Comment by ControlBreak on How can I close the browser from an XBAP? ControlBreak 2009-09-10T13:57:25Z 2009-09-10T13:57:25Z It is more usefull that is sounds to be: A colleague of me needs to prevent several instances of a XBAP application to be launched. Closing the faulty new instance using this method saved his life :) Thanks. http://stackoverflow.com/questions/531602/is-it-worth-learning-python/531612#531612 Comment by ControlBreak on Is it worth learning Python? ControlBreak 2009-02-10T09:55:10Z 2009-02-10T09:55:10Z Does saying &quot;Ruby is to Python what Visual Basic .NET is to C#&quot; make sense ? http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472221#472221 Comment by ControlBreak on Looking for C# equivalent of scanf ControlBreak 2009-01-23T08:18:30Z 2009-01-23T08:18:30Z Ow, I have no clue about how to use directly C runtime libraries. I'd rather avoid it and stick to regexes instead. http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472223#472223 Comment by ControlBreak on Looking for C# equivalent of scanf ControlBreak 2009-01-23T08:17:26Z 2009-01-23T08:17:26Z Yes, this is a mandatory condition to use ReadLine as Mitch Wheat suggested. http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472220#472220 Comment by ControlBreak on Looking for C# equivalent of scanf ControlBreak 2009-01-23T08:04:11Z 2009-01-23T08:04:11Z Thank you for the hint http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472220#472220 Comment by ControlBreak on Looking for C# equivalent of scanf ControlBreak 2009-01-23T07:57:34Z 2009-01-23T07:57:34Z Sure I could :) However, scanf is so confortable and handy compared to regex. I am pretty sure it worth the effort. http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283992#283992 Comment by ControlBreak on How to deal with great products written with crappy code ? ControlBreak 2008-11-12T14:03:01Z 2008-11-12T14:03:01Z I would have preferred it was 84's old spaghetti BASIC code as it is that hard and painful to see how bad C# is treated. http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283547#283547 Comment by ControlBreak on How to deal with great products written with crappy code ? ControlBreak 2008-11-12T12:54:34Z 2008-11-12T12:54:34Z I love the last sentence :) http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283827#283827 Comment by ControlBreak on How to deal with great products written with crappy code ? ControlBreak 2008-11-12T12:53:36Z 2008-11-12T12:53:36Z Thank you. The first goal is to gain users confidence and trust. After all, it's their application, not mine :-) &quot;Rome ne s'est pas construite en un jour&quot;. http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283562#283562 Comment by ControlBreak on How to deal with great products written with crappy code ? ControlBreak 2008-11-12T11:06:13Z 2008-11-12T11:06:13Z Thank you, this is a very constructive point of view. http://stackoverflow.com/questions/280313/merge-xdocument/280379#280379 Comment by ControlBreak on Merge XDocument ControlBreak 2008-11-11T10:29:48Z 2008-11-11T10:29:48Z Thanks a lot :) I think I have found something that works with less code. http://stackoverflow.com/questions/280313/merge-xdocument/280319#280319 Comment by ControlBreak on Merge XDocument ControlBreak 2008-11-11T08:24:26Z 2008-11-11T08:24:26Z Thank you. I'm sorry, I hate XSL. I would definitely prefer a c# code based solution.