Metro Smurf
|
Registered User
|
|
|
Dec 2 |
accepted | Best logging approach for composite app? |
|
Dec 1 |
revised |
Best logging approach for composite app? edited tags |
|
Dec 1 |
answered | Best logging approach for composite app? |
|
Nov 20 |
comment |
WPF: how to fire an EventTrigger (or Animation) when binding changes? @Dabblernl - we had tried this initially, but was hoping there was a pure XAML soltution. Thanks. |
|
Nov 20 |
comment |
WPF: how to fire an EventTrigger (or Animation) when binding changes? @Jobi - initially we did something similar, re: using the ViewModel to handle the trigger, but have ultimately gone the route of using the DataContextChanged event as suggested by Dabblernl as it keeps the UI logic in the UI and out of the model. |
|
Nov 19 |
comment |
WPF: how to fire an EventTrigger (or Animation) when binding changes? @Paul, do you have any resources (links) that you could point me to that would point me in the right direction? |
|
Nov 19 |
asked | WPF: how to fire an EventTrigger (or Animation) when binding changes? |
|
Nov 17 |
awarded | ● Notable Question |
|
Nov 12 |
comment |
Abuse of C# lambda expressions or Syntax brilliance? @Elisha - your Pros and Cons are reversed. At least I hope you're not saying that a Pro is having code "not intuitive". ;-) |
|
Nov 11 |
comment |
Best logging library for .NET? duplicate in many forms throughout SO. Samples: stackoverflow.com/questions/126540/… and stackoverflow.com/questions/98080/… |
|
Nov 9 |
awarded | ● Civic Duty |
|
Nov 9 |
comment |
Dreamweaver changing path to site’s reference instead of local Its been a few years since I've used DW, but IIRC, you'll just need to create the a blank HTML (or asp, cf, php, etc...) page first, save it and then apply the template. |
|
Nov 9 |
accepted | Dreamweaver changing path to site’s reference instead of local |
|
Nov 9 |
answered | Dreamweaver changing path to site’s reference instead of local |
|
Nov 4 |
revised |
Design pattern for class with upwards of 100 properties Added reason for giving credit to the accepted answer. |
|
Oct 30 |
comment |
Explain Generics in layman style in C#? In your last exmaple, T[] Triple... should be T[] Pair<T>( T a, T b ) { return new T[] { a, b }; } |
|
Oct 28 |
answered | Quick and Easy Shopping Carts |
|
Oct 28 |
comment |
Design pattern for class with upwards of 100 properties @Loadmaster - some of the properties are initially populated. They are then updated as needed and stored until ready to be sent off to the consuming system. I'm going to update the question with a bit more background (may be later tonight or tomorrow). |
|
Oct 28 |
comment |
Design pattern for class with upwards of 100 properties @Frank - In our case we will be consuming most of the properties. The other properties are derived from what we consume. |
|
Oct 28 |
comment |
Design pattern for class with upwards of 100 properties @alphazero - I'm not sure I follow. But, to answer: 1=true, 2=possibly, but not now, 3 is unlikely in the coming years. Can you expand on your answer? |
|
Oct 27 |
awarded | ● Nice Question |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @Kendall, I should have mentioned that we are using WPF and the Composite Application Library (Prism); several of the attributes will need to be dependency properties. Would using a definition file still be an option? |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @LBushkin - thank you, re: Bridge Pattern. This is the type of answers I was looking for and will spend some time reading up on it. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @zvolkov - yes, they are directly referenced by the code. I'm not convinced a dictionary is the direction we want to go here; specifically, we would like to have everything strongly typed. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @Pavel - we are directly editing around 90% of the attributes. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @Daniel - yes! you've nailed it, re: the internal system we submit to is the bottleneck. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @zvolkov - around 90% of the attributes are editable by the processors and is used throughout the UI. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @Philip - sadly the data doesn't really subclass into tidy segments. Although there is the possibility of breaking some parts down... hmmm... will take another look. Thanks. |
|
Oct 27 |
comment |
Design pattern for class with upwards of 100 properties @Philip - the data is stored in a combination of SharePoint and SQL Server. No WCF. All submission of data is done between internal systems where the end point takes an Excel spreadsheet of the data (no other options with the system). |
|
Oct 27 |
asked | Design pattern for class with upwards of 100 properties |
|
Oct 26 |
comment |
Can one CSS page reference another? duplicate: stackoverflow.com/questions/147500/… |
|
Oct 23 |
revised |
visual studio recognizing .asp properly or suggestion for classic asp editor/iDE edited tags |
|
Oct 21 |
comment |
What does this mean in Prism/Unity: Container.Resolve<ShellPresenter>() +1 - after reading this simple statement a few times, you've made quite a bit of sense! |
|
Oct 21 |
comment |
In what order should I place properties, events, functions, function overrides, etc. in C# classes? duplicate: stackoverflow.com/questions/150479/… |
|
Oct 21 |
awarded | ● Nice Answer |
|
Oct 21 |
comment |
WPF - How to right align a textblock inside a horizontally oriented stackpanel? @Chu - I've updated the example. Does that work? |
|
Oct 21 |
revised |
WPF - How to right align a textblock inside a horizontally oriented stackpanel? Updated with new code example based on OP's comments. |
|
Oct 17 |
comment |
WPF - How to right align a textblock inside a horizontally oriented stackpanel? Since your StackPanel has an Horizontal orientation, the TextBlocks with just keep stacking, well, horizontally. Without a width, the TextBlock will size to its contents. A couple of thoughts: Remove the TextBlock Width and set the StackPanel to an Orientation="Vertical" and each TextBlock will now take up 100% of the available width of the StackPanel. Or, you may try experimenting with a Grid layout. Without knowing exactly what you want for your layout, it's a bit of guessing game. |
|
Oct 17 |
answered | WPF - How to right align a textblock inside a horizontally oriented stackpanel? |
|
Oct 15 |
comment |
Castle Windsor lifecycle @Rob - if you have a remark about Dala's answer, you should add it in the comment section of Dala's answer ;-) |
|
Oct 15 |
comment |
Where is the right place for resource used by controls in module when using prism? @Anderson - too bad not more of us are using Prism around here... you'd be the jon skeet of prism ;) |
|
Oct 15 |
comment |
Find out the URL for the document library of a SharePoint document @strange001 - you need to post this as an edit to your question. not an answer. |
|
Oct 14 |
comment |
Are there any published frameworks or standards for passwords and website membership? +1 for addressing the talking points (almost -1 for being pompous about it ;-) |
|
Oct 14 |
awarded | ● Popular Question |
|
Oct 14 |
answered | What the ugliest API for a relatively well known library that you have seen, and why and how could it be improved ? |
|
Oct 12 |
accepted | Random background image on DIV |
|
Oct 12 |
revised |
Random background image on DIV Adding code sample |
|
Oct 12 |
comment |
Random background image on DIV @Ian - take a look at Jon's MiscUtility class that has a 'Robust' Random generator. (link in post). I've also edited the post to include his code. |
|
Oct 12 |
answered | Random background image on DIV |
|
Oct 11 |
answered | What other alternatives to log4net logging exist? |
