Drew Noakes

7,273
reputation
456 views

Registered User

name Drew Noakes
member for 1 year
seen 2 hours ago
website
location London
age 31
Originally from Australia, I now live and work in London.
18h
awarded  Popular Question
Dec
11
accepted Whitespace auto format - ReSharper and VS2008 fighting each other!
Dec
6
awarded  Mortarboard
Dec
4
awarded  Nice Question
Dec
1
accepted Recommended WPF Calendar
Nov
30
accepted WPF: Keeping an object running?
Nov
25
answered WPF: Keeping an object running?
Nov
25
comment WPF - How to stop an ItemsControl psuedo-grid’s columns from dancing/jumping around during layout
@Archimed, thanks for trying this. I've seen it happen in a few different places in my UI with as few as 5 rows, and have had to go for fixed width columns without IsSharedSizeScope to avoid the jiggling. I wonder whether it's related to hosting my elements within WinForms ElementHosts...
Nov
25
comment How do you rotate a two dimensional array?
@Sesh, yes it still works because (A,B) is the same as (B,A) when A==B.
Nov
23
awarded  Popular Question
Nov
12
comment Wpf Binding tow binding on the same Dependency property
I find this question a bit confusing. Could you provide some more information? perhaps some code samples?
Nov
12
revised regular expressions in c#
Formatting
Nov
12
answered How to disable WPF Menu’s transparency when show menu?
Nov
11
comment Cruise Control .Net Statistic Publishers
Mostly I just look at the statistics charts occasionally to check trends. It's useful to compare projects. We have about 100 builds going through this system and it's useful to have a quick glance at the reports generated about a project before starting work on one you haven't seen before. It's also useful to know whether you've added or removed a file from the build output (perhaps inadvertantly.) I try to avoid having code with NotImplementedException (R# uses this on templated code) and I like to keep the number of TODO comments down.
Nov
10
answered Cruise Control .Net Statistic Publishers
Nov
9
comment Difference Between Value attribute and explicit DataTrigger.Value in ResourceDictionary?
+1. This is because Type is marked as a [ConstructorArgument] property. But in this case, the behaviour should be identical.
Nov
9
comment WPF - How to combine DataTrigger and EventTrigger?
Have you tried this? It's my experience that you can't have a style that sets a style.
Nov
9
revised WPF - How to combine DataTrigger and EventTrigger?
formatting
Nov
9
comment What is the best way to start an animation when a bound value changes?
Where does <i:Interaction.Triggers> come from? I'm guessing it ships with Blend. Is it available to us non-Blend users? I want to achieve the same thing in my code, though am hoping that a solution exists that's less verbose as I have many such instances that require this. Maybe it's possible via a Style...
Nov
9
comment What is the best way to start an animation when a bound value changes?
How would a value converter know that the value had changed, unless you created a value converter for each individual binding?
Nov
9
revised Binding to a Nullable<DateTime> control property
edited tags
Nov
9
comment How did Microsoft create assemblies that have circular references?
But these are strongly signed assemblies. These dehydrated metadata-only assemblies would have a different cryptographic hashes. Perhaps the compiler doesn't check this, instead it's a runtime concept only. Or maybe it's a special compiler too.
Nov
9
comment How did Microsoft create assemblies that have circular references?
@Andreas Petersson -- my guess is that assemblies are loaded lazily, so there's a chance that something using mscorlib might not necessarily use the configuration or XML APIs, in which case less memory is devoted to storing the IL.
Nov
6
comment Why is DialogResult a nullable bool in WPF?
@Max, if you call Show then the call returns to you (ie. it's a non-blocking call), so you're free to interrogate the DialogResult value straight away. It's only if you call ShowDialog that the call blocks until the dialog is dismissed. However in the latter case, you're still free to interrogate the object from another thread, as you point out.
Nov
6
comment Can’t set DialogResult in WPF
Can you post the contents of your <Window ... /> definition here? Maybe it's something particular to the way you're initialising the window.
Nov
5
awarded  Tumbleweed
Nov
5
comment Bind to a method in WPF?
I take Cameron's comment to mean that he is binding to a type that he can not add a property to.
Nov
5
revised WPF - How to combine DataTrigger and Trigger?
xref
Nov
5
asked WPF - How to combine DataTrigger and EventTrigger?
Nov
5
revised WPF - How to combine DataTrigger and Trigger?
edited tags; edited title
Nov
5
revised Bind to a method in WPF?
formatting
Nov
3
comment How do you rotate a two dimensional array?
@jeffamaphone, the memory isn't changing. I guess you could think of it as aliasing, yes.
Nov
3
comment WinDbg showing different call stacks when attached to process when compared to crash dump
I'm debugging a mixture of .NET and native code via interop. I'll provide some more info when I'm able to repro the issue. Thanks again.
Nov
3
comment WinDbg showing different call stacks when attached to process when compared to crash dump
Thanks Brian. So I should expect that warning whenever debugging threads running managed code in WinDbg? That's good to know, however the issue I'm seeing is that an unmanaged stack frame is different when debugging locally when compared to debugging the dump file on a different machine. Thanks for the link -- I'll have a read.
Nov
3
asked WinDbg showing different call stacks when attached to process when compared to crash dump
Nov
2
comment WPF - Control over blending between semi-transparent layers
Thanks for this. It's unfortunate that they're not supported, but Adam Smith does a good job of explaining why that's the case at the link you provided. Cory Plott's three-part tutorial makes for good reading too.
Nov
1
revised WPF - Control over blending between semi-transparent layers
added 252 characters in body
Nov
1
revised WPF - Control over blending between semi-transparent layers
edited tags
Nov
1
asked WPF - Control over blending between semi-transparent layers
Oct
30
revised CPU performance control WPF
added 87 characters in body
Oct
30
answered Help needed for optimizing linq data extraction
Oct
30
revised Help needed for optimizing linq data extraction
deleted 1086 characters in body
Oct
30
comment WPF - How to combine DataTrigger and Trigger?
What type did you use for the ancestor?
Oct
29
asked WCF - Closing a duplex ServiceHost blocks for CloseTimeout duration if closed when client(s) connected
Oct
27
awarded  Popular Question
Oct
26
answered Difference between CLR 2.0 and CLR 4.0
Oct
26
accepted Resharper: how to force introducing new private fields at the bottom of the class?
Oct
23
comment Problems using ListBox and observable collection as a debug log
What do you mean by 'breaks down'? It's hard to know what you're experiencing from your description.
Oct
23
revised DateTimePicker displays today’s date instead of displaying its actual Value
edited tags
Oct
22
comment Setting Canvas to a control template?
I updated my answer with some more information for you.