User ControlBreak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T20:39:16Zhttp://stackoverflow.com/feeds/user/24472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1576623/itemscontrol-virtualizingstackpanel-and-scrollviewer-height2ItemsControl, VirtualizingStackPanel and ScrollViewer heightControlBreak2009-10-16T07:28:07Z2009-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><Grid>
<ItemsControl x:Name="My" ItemsSource="{Binding Path=Names}">
<ItemsControl.Template>
<ControlTemplate>
<StackPanel>
<StackPanel>
<TextBlock Text="this is a title" FontSize="15" />
<TextBlock Text="This is a description" />
</StackPanel>
<ScrollViewer CanContentScroll="True" Height="400px">
<VirtualizingStackPanel IsItemsHost="True" />
</ScrollViewer>
</StackPanel>
</ControlTemplate>
</ItemsControl.Template>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</code></pre>
<p></p></li>
</ul>
<p>The code behind is :</p>
<pre><code>public partial class Page1: Page
{
public List<string> Names { get; set; }
public Page1()
{
InitializeComponent();
Names = new List<string>();
for(int i = 0; i < 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-nodes0Using the HoverMenu extender with ASP.NET TreeView nodesControlBreak2009-09-25T06:59:35Z2009-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#15766971Answer by ControlBreak for Reason not to use LINQControlBreak2009-10-16T07:53:03Z2009-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-scanf4Looking for C# equivalent of scanfControlBreak2009-01-23T07:41:25Z2009-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#14598680Answer by ControlBreak for IIf() vs. IfControlBreak2009-09-22T12:45:28Z2009-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#14202310Answer by ControlBreak for ASP.Net Treeview: Strange postback behaviorControlBreak2009-09-14T08:00:38Z2009-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#13945840Answer by ControlBreak for WCF Inheritance/Polymorphism and SerializationControlBreak2009-09-08T15:14:58Z2009-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#10070632Answer by ControlBreak for VS2008 SP1 crashes when debugging an XSLT fileControlBreak2009-06-17T13:34:43Z2009-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#9558400Answer by ControlBreak for HTML Editing in WinForms or WPF appsControlBreak2009-06-05T13:25:38Z2009-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#175620143Answer by ControlBreak for What's the most egregious pop culture perversion of programming?ControlBreak2008-10-06T18:35:47Z2009-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#64180513Answer by ControlBreak for What's your favorite "programmer" cartoon?ControlBreak2009-03-13T08:10:43Z2009-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#3402561Answer by ControlBreak for What real life bad habits has programming given you?ControlBreak2008-12-04T11:21:35Z2008-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#3045602Answer by ControlBreak for What Is the most beautiful code you have ever seen or written?ControlBreak2008-11-20T07:29:59Z2008-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-code4How to deal with great products written with crappy code ?ControlBreak2008-11-12T10:23:13Z2008-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#2805123Answer by ControlBreak for Merge XDocumentControlBreak2008-11-11T10:20:14Z2008-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-xdocument2Merge XDocumentControlBreak2008-11-11T08:14:55Z2008-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#1942120Answer by ControlBreak for What frustrates you the most at your current workplace?ControlBreak2008-10-11T15:37:22Z2008-10-11T15:37:22Z<p>Internet filtering softwares !</p>
http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/190993#1909936Answer by ControlBreak for What frustrates you the most at your current workplace?ControlBreak2008-10-10T12:10:33Z2008-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#1902902Answer by ControlBreak for Flash vs. SilverlightControlBreak2008-10-10T05:59:12Z2008-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#18721535Answer by ControlBreak for What is the best comment in source code you have ever encountered?ControlBreak2008-10-09T13:19:37Z2008-10-09T13:19:37Z<pre><code>Repeat
...
Until (JesusChristsReturn) ' Not sure
</code></pre>
http://stackoverflow.com/questions/186895/automatic-namespaces-import/186913#1869132Answer by ControlBreak for Automatic namespaces importControlBreak2008-10-09T11:53:55Z2008-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#1865941Answer by ControlBreak for When do you design the GUI first and the backend code later, or vice versa?ControlBreak2008-10-09T09:56:28Z2008-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#18656010Answer by ControlBreak for What was your first programming language?ControlBreak2008-10-09T09:42:10Z2008-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#1864581Answer by ControlBreak for How do I call a WCF webservice from Silverlight?ControlBreak2008-10-09T08:57:25Z2008-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-2Answer by ControlBreak for Parser for C#ControlBreak2008-10-09T06:19:55Z2008-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#1843421Answer by ControlBreak for Useful Developer Resources in Second LifeControlBreak2008-10-08T19:02:27Z2008-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#1824341Answer by ControlBreak for Game project developmentControlBreak2008-10-08T12:16:23Z2008-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#1823602Answer by ControlBreak for Company insists on using a binary format for all our documentationControlBreak2008-10-08T11:58:46Z2008-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#1817481Answer by ControlBreak for Why can't I debug my asp.net web appControlBreak2008-10-08T07:55:33Z2008-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#1783971Answer by ControlBreak for When does a DropDownList retain the value from postback at the SelectedIndexChanged Event HandlerControlBreak2008-10-07T13:19:40Z2008-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#1578422Comment by ControlBreak on ItemsControl, VirtualizingStackPanel and ScrollViewer heightControlBreak2009-10-19T06:28:46Z2009-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#1164715Comment by ControlBreak on How can I change a portion of a string in the Linden Scripting Language (LSL)?ControlBreak2009-10-16T10:51:30Z2009-10-16T10:51:30ZThis is definitely not the right answer :(http://stackoverflow.com/questions/1576245/what-c-book-would-you-suggest-for-c-c-programmer/1576302#1576302Comment by ControlBreak on What C# book would you suggest for C/C++ programmer?ControlBreak2009-10-16T06:39:13Z2009-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#1357331Comment by ControlBreak on How can I close the browser from an XBAP?ControlBreak2009-09-10T13:57:25Z2009-09-10T13:57:25ZIt 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#531612Comment by ControlBreak on Is it worth learning Python?ControlBreak2009-02-10T09:55:10Z2009-02-10T09:55:10ZDoes saying "Ruby is to Python what Visual Basic .NET is to C#" make sense ?http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472221#472221Comment by ControlBreak on Looking for C# equivalent of scanfControlBreak2009-01-23T08:18:30Z2009-01-23T08:18:30ZOw, 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#472223Comment by ControlBreak on Looking for C# equivalent of scanfControlBreak2009-01-23T08:17:26Z2009-01-23T08:17:26ZYes, this is a mandatory condition to use ReadLine as Mitch Wheat suggested.http://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472220#472220Comment by ControlBreak on Looking for C# equivalent of scanfControlBreak2009-01-23T08:04:11Z2009-01-23T08:04:11ZThank you for the hinthttp://stackoverflow.com/questions/472202/looking-for-c-equivalent-of-scanf/472220#472220Comment by ControlBreak on Looking for C# equivalent of scanfControlBreak2009-01-23T07:57:34Z2009-01-23T07:57:34ZSure 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#283992Comment by ControlBreak on How to deal with great products written with crappy code ?ControlBreak2008-11-12T14:03:01Z2008-11-12T14:03:01ZI 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#283547Comment by ControlBreak on How to deal with great products written with crappy code ?ControlBreak2008-11-12T12:54:34Z2008-11-12T12:54:34ZI love the last sentence :)http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283827#283827Comment by ControlBreak on How to deal with great products written with crappy code ?ControlBreak2008-11-12T12:53:36Z2008-11-12T12:53:36ZThank you. The first goal is to gain users confidence and trust. After all, it's their application, not mine :-)
"Rome ne s'est pas construite en un jour".http://stackoverflow.com/questions/283511/how-to-deal-with-great-products-written-with-crappy-code/283562#283562Comment by ControlBreak on How to deal with great products written with crappy code ?ControlBreak2008-11-12T11:06:13Z2008-11-12T11:06:13ZThank you, this is a very constructive point of view.http://stackoverflow.com/questions/280313/merge-xdocument/280379#280379Comment by ControlBreak on Merge XDocumentControlBreak2008-11-11T10:29:48Z2008-11-11T10:29:48ZThanks a lot :) I think I have found something that works with less code.http://stackoverflow.com/questions/280313/merge-xdocument/280319#280319Comment by ControlBreak on Merge XDocumentControlBreak2008-11-11T08:24:26Z2008-11-11T08:24:26ZThank you. I'm sorry, I hate XSL. I would definitely prefer a c# code based solution.