Advanced Forum Search Results
-
No, I hadn't seen that post until now. I definately hope that lack of social etiquette exhibited in the comments stays off of this thread, as I can only imagine that people looking for real information will only get turned off by that.
Your second paragraph above is dead on, and a great summary of the spirit of the async i/o model. I really ...
-
There is another post on this forum (started as a "petition") that might have started with good intentions by the original poster, but has degraded into attacks and FUD.
I think this is an important topic, and I am hoping that by starting a new thread on the topic, that everyone who has input can participate in a civil and ...
-
Even though you can give the thumb a fixed size using the Min/Max properties, the scrollbar code completely ignores that when calculating the proper position of the thumb. So while the thumb might be the size you want, it will not "track" correctly when you drag it with the mouse - it will appear to move too fast or too slow and will ...
-
I hope so - I have had to alter a few designs myself for now because they were relying on fixed-size scrollbar thumbs.
-
Actually, row 1 gets resized based on position, which is what drives the position of the thumb - not the size of it. Row 3 simply gets whatever vertical space is remaining after Row 1 and the thumb have been accounted for.
The thumb itself has its height calculated by the ScrollBar code, which is calculated based on the scrollable height and ...
-
I use PureText to paste code - at least the spacing is good that way. This is a great utility by the way, useful for many more things too...
http://www.stevemiller.net/puretext/
-
[quote user="etiennesdg"]
Hi everyone,
I'm trying to find the best way to pass through all the childs and the sub childs of a control (canvas for exemple).
to pass all the child of the control i can do this :for (int j = 0; j < this.Children.Count; j++)
{
}
But thoses childs can themselves have childs and some of them can ...
-
Thank you for posting the code that you are using.
To answer your question - LINQ *can* use deferred query plans, if the underlying LINQ Provider supports it. LINQ to XML does support it. The catch is that different LINQ providers can be chained together, and as soon as it hits a query expression that requires immediate execution (instead of ...
-
Sinosoidal, can you give some details about what the "Communicater" class looks like? Depending upon the implementation there, the entire LoadCompleted method might already be getting executed on the main UI thread, which would make the calls to Dispatcher.BeginInvoke() pointless, but more importantly it would mean that all the other ...
-
Sinosoudal, please post some sample code and perhaps someone will be able to fully assist you.