User MojoFilter - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:13:03Zhttp://stackoverflow.com/feeds/user/93http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1528/hiding-inherited-members-in-c2Hiding inherited members in C#MojoFilter2008-08-04T19:13:54Z2009-11-19T17:51:07Z
<p>I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency properties which have become vestigial and can be a little confusing when using intellisense or using the classes in a visual designer.</p>
<p>These classes are all controls that are written to be compiled for either WPF or Silverlight 2.0. I know about <code>ICustomTypeDescriptor</code> and <code>ICustomPropertyProvider</code>, but I'm pretty certain those can't be used in Silverlight. </p>
<p>It's not as much a functional issue as a usability issue. What should I do?</p>
<p><strong>update:</strong>
Some of the properties that I would really like to hide come from ancestors that are not my own and because of a specific tool I'm designing for, I can't do member hiding with the <code>new</code> operator. (I know, it's ridiculous)</p>
http://stackoverflow.com/questions/71932/programmatic-binding-in-silverlight1Programmatic binding in SilverlightMojoFilter2008-09-16T13:00:10Z2009-10-13T13:05:19Z
<p>I'm missing the boat on something here, kids. This keeps rearing its head and I don't know what's going on with it, so I hope my homeys here can help.</p>
<p>When working in Silverlight, when I create bindings in my c# code, they never hold up when the application is running. The declarative bindings from my xaml seem ok, but I'm doing something wrong when I create my bindings in C#. I'm hopeing that there is something blindingly obvious I'm missing. Here's a typical binding that gets crushed:</p>
<pre><code>TextBlock tb = new TextBlock();
Binding b = new Binding("FontSize");
b.Source = this;
tb.SetBinding(TextBlock.FontSizeProperty, b);
</code></pre>
http://stackoverflow.com/questions/1410602/how-do-set-a-timeout-for-a-method/1533975#15339750Answer by MojoFilter for how do set a timeout for a method MojoFilter2009-10-07T20:25:05Z2009-10-07T20:25:05Z<p>Ok, here's the real answer.</p>
<pre><code>...
void LongRunningMethod(object monitorSync)
{
//do stuff
lock (monitorSync) {
Monitor.Pulse(monitorSync);
}
}
void ImpatientMethod() {
Action<object> longMethod = LongRunningMethod;
object monitorSync = new object();
bool timedOut;
lock (monitorSync) {
longMethod.BeginInvoke(monitorSync, null, null);
timedOut = !Monitor.Wait(monitorSync, TimeSpan.FromSeconds(30)); // waiting 30 secs
}
if (timedOut) {
// it timed out.
}
}
...
</code></pre>
<p>This combines two of the most fun parts of using C#. First off, to call the method asynchronously, use a delegate which has the fancy-pants <code>BeginInvoke</code> magic.</p>
<p>Then, use a monitor to send a message from the <code>LongRunningMethod</code> back to the <code>ImpatientMethod</code> to let it know when it's done, or if it hasn't heard from it in a certain amount of time, just give up on it.</p>
<p>(p.s.- Just kidding about this being the real answer. I know there are 2^9303 ways to skin a cat. Especially in .Net)</p>
http://stackoverflow.com/questions/183406/xaml-newline-in-string-attribute8XAML: Newline in string attributeMojoFilter2008-10-08T15:32:37Z2009-09-16T11:03:57Z
<p>How can I add a line break to text when it is being set as an attribute i.e.:</p>
<pre><code><TextBlock Text="Stuff on line1 \n Stuff on line2" />
</code></pre>
<p>Breaking it out into the exploded format isn't an option for my particular situation. What I need is someway to emulate the following:</p>
<pre><code><TextBlock>
<TextBlock.Text>
Stuff on line1 <LineBreak/>
Stuff on line2
</TextBlock.Text>
<TextBlock/>
</code></pre>
http://stackoverflow.com/questions/834929/silverlight-how-to-receive-notification-of-a-change-in-an-inherited-dependencypr2Silverlight: How to receive notification of a change in an inherited DependencyPropertyMojoFilter2009-05-07T14:21:08Z2009-09-08T23:28:55Z
<p>I have a control which inherits from (you guessed it) Control.
I want to receive a notification whenever the <code>FontSize</code> or <code>Style</code> properties are changed. In WPF, I would do that by calling <code>DependencyProperty.OverrideMetadata()</code>. Of course, useful things like that have no place in Silverlight. So, how might one receive those kinds of notifications? </p>
http://stackoverflow.com/questions/12385/in-silverlight-how-to-you-attach-a-changeevent-handler-to-an-inherited-dependenc2In silverlight, how to you attach a changeEvent handler to an inherited dependency property?MojoFilter2008-08-15T15:34:20Z2009-08-29T14:38:01Z
<p>How would you attach a propertychanged callback to a property that is inherited? Like such:</p>
<pre><code>class A {
DependencyProperty prop;
}
class B : A {
//...
prop.AddListener(PropertyChangeCallback);
}
</code></pre>
http://stackoverflow.com/questions/299703/c-delegate-keyword-vs-lambda-notation10C#: delegate keyword vs. lambda notationMojoFilter2008-11-18T18:38:08Z2009-08-13T02:17:07Z
<p>Once it is compiled, is there a difference between:</p>
<pre><code>delegate { x = 0; }
</code></pre>
<p>and</p>
<pre><code>() => { x = 0 }
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/1241344/find-endpoint-addresses-for-a-service-implementation-without-operationcontext-cur0Find Endpoint addresses for a service implementation without OperationContext.CurrentMojoFilter2009-08-06T20:47:21Z2009-08-07T00:21:43Z
<p>I have a WCF service in which I would like to do some initialization-type operations based on the configured EndpointAddresses for a few different contracts implemented by the service.</p>
<p>The service can be (and is) hosted from within a few different Service Hosts. There is a console application which creates a service host, a windows service which creates a service host, it lives in an IIS host and I would also really like to be able to use the Visual Studio service host for debugging.</p>
<p>Is there any way to get a reference to the <code>ServiceHostBase</code> which created the instance of the service without being inside a service operation? Or maybe a better (read: trickier) way of figuring out what endpoints the service is servicing?</p>
http://stackoverflow.com/questions/16096/how-to-apply-multiple-styles-in-wpf9How to apply multiple styles in WPFMojoFilter2008-08-19T12:47:44Z2009-08-03T10:03:13Z
<p>In WPF, how would I apply multiple styles to a <code>FrameworkElement</code>? For instance, I have a control which already has a style. I also have a separate style which I would like to add to it without blowing away the first one. The styles have different TargetTypes, so I can't just extend one with the other.</p>
http://stackoverflow.com/questions/747854/how-does-document-ready-work-in-ie-82How does $(document).ready() work in IE 8?MojoFilter2009-04-14T14:26:59Z2009-07-22T03:21:21Z
<p>I've recently installed IE 8 and can't seem to get the jquery $(document).ready event to fire. Are there any special considerations that I'm missing? Litterally, this is all I have in my html and it works as expected in Chrome and Firefox:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Page full of awesomeness</title>
<script type="text/javascript" src="~/Scripts/jquery-1.3.2.js" />
<script type="text/javascript">
$(document).ready(function() {
alert("Hello?");
});
</script>
</head>
<body>
</body>
</code></pre>
<p></p>
<p>In Internet Explorer, the page just loads without incident. There's no alert box and I can't see any javascript errors reported. Is this something normal that I just don't know about?</p>
http://stackoverflow.com/questions/803484/what-is-the-difference-between-the-properties-keys-and-allkeys-on-a-namevaluecoll3What is the difference between the properties Keys and AllKeys on a NameValueCollection?MojoFilter2009-04-29T17:44:23Z2009-05-27T20:14:07Z
<p>System.Collections.Specialized.NameObjectCollectionBase has two similar properties:</p>
<pre><code> string[] AllKeys
NameObjectCollectionBase.KeyCollection Keys
</code></pre>
<p>Do they provide different sets of data? When would I want to use one over the other?</p>
http://stackoverflow.com/questions/824263/best-way-to-serialize-a-wpf-element-tree-to-xaml/892669#8926690Answer by MojoFilter for Best way to serialize a wpf element tree to Xaml?MojoFilter2009-05-21T12:21:34Z2009-05-21T12:21:34Z<p>We have a XAML designer product which emplores a custom XAML serializer. As it is, that is the most useful solution for us. However, with .Net 4, there are a lot of great options (and helpers) for doing exactly that task. So, if you're not afraid of a little betaness, I would start looking there.</p>
<p>Check out what <a href="http://blogs.msdn.com/bursteg/archive/2009/05/18/xaml-in-net-4-0-serialization-and-deserialization-using-xamlservices.aspx" rel="nofollow">Guy Burstein</a> has to say about it.</p>
http://stackoverflow.com/questions/795184/wpf-what-conditions-must-be-met-to-use-data-binding-in-a-custom-controls-conte/795234#7952340Answer by MojoFilter for WPF - What conditions must be met to use data binding in a custom control's content items?MojoFilter2009-04-27T20:47:50Z2009-04-27T20:47:50Z<p>I think the problem you're seeing is that the bindings are trying to use the wrong source. I suspect something like this will work for you:</p>
<pre><code><c:PieChart>
<!-- These dependency properties are never set -->
<c:Slice Value="{Binding RedCount, RelativeSource={AncestorType c:PieChart}}" />
<c:Slice Value="{Binding BlueCount, RelativeSource={AncestorType c:PieChart}}" />
<c:Slice Value="{Binding GreenCount, RelativeSource={AncestorType c:PieChart}}" />
</c:PieChart>
</code></pre>
<p>I think that's close, but I might be way off. I can't really look it up right now. But it sounds good to me. (Sorry if it's completely wrong :) )</p>
http://stackoverflow.com/questions/794512/how-do-i-implement-a-custom-brush-in-wpf2How do I implement a custom Brush in WPF?MojoFilter2009-04-27T17:38:22Z2009-04-27T19:05:06Z
<p>Where can I find out enough info about how Brushes work to implement my own System.Windows.Media.Brush? I can handle all of the freezable baggage, but it's not really obvious what I need to override to get it to work.</p>
<p><hr /></p>
<p>Yeah, so I didn't mean that I want to use a predefined brush. I want to extend System.Windows.Media.Brush, which is an abstract class. This is all purely for my own edification. I'm not even sure what kind of brush I could make. I was just trying to learn how brushes work. As in:</p>
<pre><code>public AwesomeBrush : Brush
{
protected override Freezable CreateInstanceCore()
{
return new AwesomeBrush();
}
... // concrete brush stuff
}
</code></pre>
http://stackoverflow.com/questions/762487/generated-image-display-vs-download1Generated image display vs. downloadMojoFilter2009-04-17T22:52:44Z2009-04-18T01:30:59Z
<p>I have an MVC action that pulls an image from a database and sends it in the response via the File(byte[], string) method. When I navigate to the action in my browser, it downloads the file rather than display it in the browser. </p>
<p>I'm setting the file and setting the content type to "image/jpeg". Is there another header that needs to be set in order to get it to do what I want it to do?</p>
http://stackoverflow.com/questions/762487/generated-image-display-vs-download/762711#7627111Answer by MojoFilter for Generated image display vs. downloadMojoFilter2009-04-18T01:30:59Z2009-04-18T01:30:59Z<p>Ok, mystery solved.</p>
<p>Controller.File() has an overload that takes no filename; just data and content-type. Using that overload causes the content-disposition to be set correctly. In retrospect, I guess that makes a lot of sense.</p>
http://stackoverflow.com/questions/557761/why-cant-i-define-a-resourcedictionary-in-xaml-and-instantiate-it-by-itself1Why can't I define a ResourceDictionary in XAML and instantiate it by itself?MojoFilter2009-02-17T17:09:30Z2009-02-17T22:12:53Z
<p>Ok, that question was really hard to ask in one line. Here's the deal. If I have this XAML:</p>
<pre><code><ResourceDictionary
x:Class="MyAssembly.MiscResources"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="MyBrush" Color="Purple" />
</ResourceDictionary>
</code></pre>
<p>Then I have this in some C#:</p>
<pre><code>var dict = new MiscResources();
</code></pre>
<p><code>dict</code> gets created and seems to function normally, but it has 0 elements. Not that this is some kind of neccessary behavior, but I totally don't understand why it doesn't work. What piece of this am I missing?</p>
http://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource/558249#5582491Answer by MojoFilter for How to update Dynamic Resource within a Dynamic Resource?MojoFilter2009-02-17T18:58:32Z2009-02-17T18:58:32Z<p>Unless I misunderstand the situation, exactly what you're talking about works pretty well. I just tried it out with this Xaml:</p>
<pre><code><Window x:Class="ConditionalTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Window.Resources>
<SolidColorBrush x:Key="MyColor" Color="Aqua" />
<VisualBrush x:Key="MyBrush">
<VisualBrush.Visual>
<Ellipse Height="50" Width="100" Fill="{DynamicResource MyColor}" />
</VisualBrush.Visual>
</VisualBrush>
</Window.Resources>
<Grid Background="{DynamicResource MyBrush}">
<Button Height="30" Width="Auto" VerticalAlignment="Center" HorizontalAlignment="Center" Content="ChangeColor" Click="Button_Click" />
</Grid>
</Window>
</code></pre>
<p>And then changed the color in the click handler for that button:</p>
<pre><code>private void Button_Click(object sender, RoutedEventArgs e)
{
((SolidColorBrush)Resources["MyColor"]).Color = Colors.Purple;
}
</code></pre>
<p>And it worked like a champ.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522226#5222266Answer by MojoFilter for What's the best name for a non-mutating "add" method on an immutable collection?MojoFilter2009-02-06T21:22:32Z2009-02-06T21:22:32Z<p>In situations like that, I usually go with <code>Concat</code>. That usually implies to me that a new object is being created.</p>
<pre><code>var p = listA.Concat(listB);
var k = listA.Concat(item);
</code></pre>
http://stackoverflow.com/questions/340645/binding-xml-in-sliverlight-without-nominal-classes/341551#3415510Answer by MojoFilter for Binding XML in Sliverlight without Nominal ClassesMojoFilter2008-12-04T17:58:55Z2008-12-04T17:58:55Z<p>Could you do something similar to what Bryant is suggesting with a query that uses an anonymous class?</p>
<p>i.e.:</p>
<pre><code>var data = from c in xml.Descendants("item")
select new { Forename = c.Attribute("forename").Value,
Surname = c.Attribute("surname").Value };
ItemList.ItemsSource = data
</code></pre>
<p>I think this should work, but I'm not somewhere I could test it out. If it doesn't, somebody let me know why because now I'm interested.</p>
http://stackoverflow.com/questions/338262/net-framework-version-in-silverlight-no-listt-find-methods/338382#3383820Answer by MojoFilter for .Net framework version in Silverlight: no List<T>.Find methods?MojoFilter2008-12-03T19:09:20Z2008-12-03T19:09:20Z<p>It's a constant battle, brother. I keep my .Net API and Silverlight API bookmarks right next to each other because I develop a lot of controls that are used in both WPF and Silverlight and it seems like every time I come up with a good idea for implementing a feature, I run into something fundemental not supported in Silverlight.</p>
<p>I can just see the meeting to discuss what got the chop. "What do we need this find() method for? We've got a perfectly good LINQ library. Gone!"</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc838194(VS.95).aspx" rel="nofollow">Silverlight Reference</a></p>
http://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects2Where do I start designing a Custom Control that contains child objects?MojoFilter2008-09-08T12:22:31Z2008-12-02T15:48:31Z
<p>I think this is a fun engineering-level question.</p>
<p>I need to design a control which displays a line chart. What I want to be able to do is use a designer to add multiple <code>Pens</code> which actually describe the data and presentation so that it ends up with Xaml something along these lines:</p>
<pre><code><Chart>
<Pen Name="SalesData" Color="Green" Data="..."/>
<Pen Name="CostData" Color="Red" Data="..." />
...
</chart>
</code></pre>
<p>My first thought is to extend <code>ItemsControl</code> for the <code>Chart</code> class. Will that get me where I want to go or should I be looking at it from a different direction such as extending <code>Panel</code>?</p>
<p>The major requirement is to be able to use it in a designer without adding any C# code. In order for that to even be feasible, it needs to retain its structure in the tree-view model. In other words, if I were working with this in Expression Blend or Mobiform Aurora, I would be able to select the chart from the logical tree or select any of the individual pens to edit their properties.</p>
http://stackoverflow.com/questions/315646/is-there-an-inverse-of-system-diagnostics-conditionalattribute1Is there an inverse of System.Diagnostics.ConditionalAttribute?MojoFilter2008-11-24T21:55:56Z2008-11-25T16:27:58Z
<p>Is there an analogous conditional-not-present attribute or maybe a way to use the Conditional attribute to only include a method if that symbol is <em>not</em> defined?</p>
<p>What I'm looking for is something that works like this:</p>
<pre><code>[Conditional("!SILVERLIGHT")]
private void DoStuffThatSilverlightCant() {...}
</code></pre>
<p>Such that the method will not be included if the symbol <code>SILVERLIGHT</code> does exist.</p>
<p>The reason I don't want to use a simple <code>#ifdef</code> is so that I can take advantage of the compiler removing the calling statements without having to wrap every individual call in an <code>#ifdef</code>.</p>
http://stackoverflow.com/questions/309671/silverlight-2-user-control-unknown-attribute-name-on-element/316415#3164150Answer by MojoFilter for Silverlight 2 User Control - Unknown attribute name on elementMojoFilter2008-11-25T05:11:10Z2008-11-25T05:11:10Z<p>In my experience the Visual Studio XAML designer, especially with Silverlight, will crap out for pretty much anything. I can't open a XAML file without all sorts of those mysterious errors and when it does render in the designer, it's not usually very useful.</p>
http://stackoverflow.com/questions/305759/how-do-you-enforce-licensing-on-a-redistributable-control-library0How do you enforce licensing on a redistributable control library?MojoFilter2008-11-20T15:52:17Z2008-11-20T16:01:43Z
<p>If you have a WPF control library which you wanted to license to developers, how do enforce license restrictions such that the library could be used and distributed in their own applications and yet prevent the end-users from reusing that .dll?</p>
<p>I'm approaching this from a strict business perspective, so I'm trying to find a solution that wouldn't allow indiscriminating users to do something as simple as pass the .dll around with the key and be able to share it.</p>
<p>Any thoughts on this are absolutely welcome and feel free to wax philosophical.</p>
http://stackoverflow.com/questions/295833/nullable-type-issue-with-conditional-operator/295846#2958463Answer by MojoFilter for Nullable type issue with ?: Conditional OperatorMojoFilter2008-11-17T15:22:25Z2008-11-17T15:22:25Z<p>It's because in a ternary operator, the two values must be the same type.</p>
http://stackoverflow.com/questions/288115/is-there-a-workaround-for-the-missing-findname-method-in-silverlights-datatempla/288197#2881971Answer by MojoFilter for Is there a workaround for the missing FindName method in Silverlight's DataTemplate?MojoFilter2008-11-13T20:37:44Z2008-11-13T20:37:44Z<p>If the border is inside a DataTemplate, not a ControlTemplate, then the only way I've been able to do that in the past is to use VisualTreeHelper to locate the element I need.</p>
http://stackoverflow.com/questions/855/net-xml-comment-into-api-documentation2.Net XML comment into API DocumentationMojoFilter2008-08-03T22:03:37Z2008-11-11T16:23:20Z
<p>Is there an easy way to produce MSDN-style documentation from the Visual Studio XML output? I'm not patient enough to set up a good xslt for it because I know I'm not the first person to cross this bridge. Also, I tried setting up sandcastle recently, but it really made my eyes cross. Either I was missing something important in the process or it is just way too involved.</p>
<p>I know somebody out there has a really nice dead-simple solution.</p>
<p>I'm reiterating here because I think my formatting made that paragraph non-inviting to read:</p>
<p><strong>I gave sandcastle a try but had a really hard time getting it set up. What I really have in mind is something much simpler.</strong></p>
<p>That is, unless I just don't understand the sandcastle process. It seemed like an awful lot of extra baggage to me just to produce something nice for the testers to work with.</p>
http://stackoverflow.com/questions/271904/can-you-detect-if-a-c-field-has-been-assigned-a-default-value/272040#2720400Answer by MojoFilter for Can you detect if a C# field has been assigned a default value?MojoFilter2008-11-07T13:20:13Z2008-11-07T13:20:13Z<p>That's why the world should use dependency properties. All of that fun stuff is built right in.</p>
http://stackoverflow.com/questions/265062/load-image-from-file-and-print-it-using-wpf-how/265127#2651270Answer by MojoFilter for Load image from file and print it using WPF... how?MojoFilter2008-11-05T13:26:50Z2008-11-05T13:26:50Z<p>Just load the image and apply it to a visual. Then use the PrintDialog to do the work.</p>
<pre><code>...
PrintDialog printer = new PrintDialog();
if (printer.ShowDialog()) {
printer.PrintVisual(myVisual, "A Page Title");
}
</code></pre>
http://stackoverflow.com/questions/670634/what-is-the-most-intuitive-usable-way-of-entering-a-time-of-day-or-a-duration/675515#675515Comment by MojoFilter on What is the most intuitive, usable way of entering a time of day or a duration?MojoFilter2009-09-30T12:36:04Z2009-09-30T12:36:04ZYou can't fool me. That pun was totally intended.http://stackoverflow.com/questions/1241344/find-endpoint-addresses-for-a-service-implementation-without-operationcontext-cur/1242246#1242246Comment by MojoFilter on Find Endpoint addresses for a service implementation without OperationContext.CurrentMojoFilter2009-08-07T12:29:14Z2009-08-07T12:29:14ZHoly cow, it really was that easy. I guess what was tripping me up is that for some reason my broken brain had come to the conclusion that I couldn't add an additional ServiceBehavior to the one which was already defined.http://stackoverflow.com/questions/1241344/find-endpoint-addresses-for-a-service-implementation-without-operationcontext-cur/1242246#1242246Comment by MojoFilter on Find Endpoint addresses for a service implementation without OperationContext.CurrentMojoFilter2009-08-07T12:07:10Z2009-08-07T12:07:10ZIt runs in single-instance mode. I have been trying to avoid using a custom ServiceHost just because we love using the WCF Service Host app for testing and don't know of a way to use a custom ServiceHost class with that.
I was looking into how to accomplish it within ApplyDispatchBehavior(), but I have yet to wrap my head around it.http://stackoverflow.com/questions/1168029/how-can-i-get-information-about-the-source-image-of-a-wpf-image-element/1168063#1168063Comment by MojoFilter on How Can I Get Information About the Source Image of a WPF `<Image>` Element?MojoFilter2009-07-22T20:42:52Z2009-07-22T20:42:52ZThis is the way to do it, assuming the image source is a BitmapSource (which you totally know it is, for realz).http://stackoverflow.com/questions/834929/silverlight-how-to-receive-notification-of-a-change-in-an-inherited-dependencypr/835091#835091Comment by MojoFilter on Silverlight: How to receive notification of a change in an inherited DependencyPropertyMojoFilter2009-05-07T15:12:05Z2009-05-07T15:12:05ZI'm pretty sure DependencyPropertyDescrtiptors are mythical beasts in Silverlight, unfortunately.http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202950#202950Comment by MojoFilter on Is there a human readable programming language?MojoFilter2009-05-07T14:08:17Z2009-05-07T14:08:17ZThat's pretty golly gee awesome. I've never seen that before.http://stackoverflow.com/questions/803744/asp-net-mvc-why-doesnt-my-routing-work-after-publish/803763#803763Comment by MojoFilter on ASP.NET MVC Why doesn't my routing work after publish?MojoFilter2009-04-30T23:13:43Z2009-04-30T23:13:43ZIt sounds like this is exactly what's happening. IIS6 doesn't support the URL rewriting-ish features that MVC routing needs. The workaround is pretty simple, though.http://stackoverflow.com/questions/803484/what-is-the-difference-between-the-properties-keys-and-allkeys-on-a-namevaluecoll/803516#803516Comment by MojoFilter on What is the difference between the properties Keys and AllKeys on a NameValueCollection?MojoFilter2009-04-29T18:00:32Z2009-04-29T18:00:32ZThat's what I'm thinking too. You'd sure think a big difference like that would be explicit in the documentation. (Or maybe named a little better to reflect the semantics). Usually, the MSDN documentation is pretty excellent about things like that. That's why this one threw me off-guard.http://stackoverflow.com/questions/795184/wpf-what-conditions-must-be-met-to-use-data-binding-in-a-custom-controls-conte/795234#795234Comment by MojoFilter on WPF - What conditions must be met to use data binding in a custom control's content items?MojoFilter2009-04-27T20:49:30Z2009-04-27T20:49:30ZAfter reading the question again, I don't think those values are coming from the PieChart class in the first place... which makes this completely pointless. You're welcome.
http://stackoverflow.com/questions/794512/how-do-i-implement-a-custom-brush-in-wpf/794624#794624Comment by MojoFilter on How do I implement a custom Brush in WPF?MojoFilter2009-04-27T19:07:07Z2009-04-27T19:07:07ZDamn you internal constructors! I've been foiled by you before!http://stackoverflow.com/questions/794512/how-do-i-implement-a-custom-brush-in-wpf/794713#794713Comment by MojoFilter on How do I implement a custom Brush in WPF?MojoFilter2009-04-27T18:45:31Z2009-04-27T18:45:31ZI suspect that's the case, as well. I can't imagine anything that couldn't be done with the brush implementations provided in the framework, I was just wondering if there might be fun ways to componentize such things to make it really slick for reuse.http://stackoverflow.com/questions/794512/how-do-i-implement-a-custom-brush-in-wpf/794624#794624Comment by MojoFilter on How do I implement a custom Brush in WPF?MojoFilter2009-04-27T18:32:17Z2009-04-27T18:32:17ZWhat is it about Brush that makes it unable to be inherited? I know all of the implementations are sealed, but we should be able to derive from Brush, right?http://stackoverflow.com/questions/762487/generated-image-display-vs-downloadComment by MojoFilter on Generated image display vs. downloadMojoFilter2009-04-18T01:20:43Z2009-04-18T01:20:43Zcontent-disposition was the header I was thinking of. However, whenever I tried to set it, I got a NotSupportedOnThisPlatformJerk exception. After a little reading, I found out that Controller.File() sets the content-disposition based on the file name passed in. So, we're still in the same spot.http://stackoverflow.com/questions/762487/generated-image-display-vs-download/762511#762511Comment by MojoFilter on Generated image display vs. downloadMojoFilter2009-04-17T23:07:23Z2009-04-17T23:07:23ZI'm sorry, I meant I set the content type, not the mime-type.http://stackoverflow.com/questions/747854/how-does-document-ready-work-in-ie-8/747874#747874Comment by MojoFilter on How does $(document).ready() work in IE 8?MojoFilter2009-04-14T16:51:24Z2009-04-14T16:51:24ZThat totally did it. Thanks. I probably would've never come up with that one.