User Brad Tutterow - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T12:45:10Zhttp://stackoverflow.com/feeds/user/308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1401881/in-silverlight-3-0-can-i-create-a-data-template-in-an-external-file-that-include0In Silverlight 3.0, can I create a data template in an external file that includes a reference to an event handler?Brad Tutterow2009-09-09T20:23:46Z2009-12-07T00:00:04Z
<p>Is it possible to include an event handler reference in a data template that is not associated with the code-behind where the event handler is defined? I'm getting a PARSER-BAD-PROPERTY-VALUE when trying to pull this off.</p>
<p>For example, let's say I have this very simple XAML.</p>
<p><strong>page.xaml</strong></p>
<pre><code><DataTemplate x:Key="ItemsTemplate">
<HyperlinkButton Click="HyperlinkButton_Click" />
</DataTemplate>
<ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" />
</code></pre>
<p>This works fine since the event handler *HyperlinkButton_Click* is in the code-behind for page.xaml.</p>
<p>BUT ... when I move the data template to another file ...</p>
<p><strong>resources.xaml</strong></p>
<pre><code><DataTemplate x:Key="ItemsTemplate">
<HyperlinkButton Click="HyperlinkButton_Click" />
</DataTemplate>
</code></pre>
<p><strong>page.xaml</strong></p>
<pre><code><ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" />
</code></pre>
<p>... Silverlight seems to lose track of what I'm doing and I get the PARSER-BAD-PROPERTY-VALUE error.</p>
http://stackoverflow.com/questions/1531584/find-non-used-functions/1531893#15318933Answer by Brad Tutterow for Find Non Used Functions?Brad Tutterow2009-10-07T14:11:58Z2009-10-08T14:12:02Z<p>I prefer <a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">ReSharper</a> for this, but if you're looking for a free product, <a href="http://msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx" rel="nofollow">Microsoft FxCop</a> will identity unused public methods.</p>
http://stackoverflow.com/questions/3437/options-for-google-maps-over-ssl2Options for Google Maps over SSLBrad Tutterow2008-08-06T14:14:29Z2009-09-30T19:32:07Z
<p>We recently discovered that the Google Maps API does not play nicely with SSL. Fair enough, but what are some options for overcoming this that others have used effectively?</p>
<blockquote>
<p><a href="http://code.google.com/support/bin/answer.py?answer=65301&topic=10945" rel="nofollow">Will the Maps API work over SSL (HTTPS)?</a></p>
<p>At this time, the Maps API is not
available over a secure (SSL)
connection. If you are running the
Maps API on a secure site, the browser
may warn the user about non-secure
objects on the screen.</p>
</blockquote>
<p>We have considered the following options</p>
<ol>
<li>Splitting the page so that credit card collection (the requirement for SSL) is not on the same page as the Google Map.</li>
<li>Switching to another map provider, such as Virtual Earth. Rumor has it that they support SSL.</li>
<li>Playing tricks with IFRAMEs. Sounds kludgy.</li>
<li>Proxying the calls to Google. Sounds like a lot of overhead.</li>
</ol>
<p>Are there other options, or does anyone have insight into the options that we have considered?</p>
http://stackoverflow.com/questions/1499814/whats-the-simplest-way-to-rewrite-urls-in-asp-net-mvc-iis7/1499929#14999293Answer by Brad Tutterow for What's the simplest way to rewrite Urls in ASP.NET MVC / IIS7?Brad Tutterow2009-09-30T18:39:04Z2009-09-30T18:39:04Z<p>Starting with IIS7, IIS ships with a module that can be used for rewriting URLs.</p>
<p><a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" rel="nofollow">http://learn.iis.net/page.aspx/460/using-url-rewrite-module/</a></p>
<blockquote>
<p>"The Microsoft URL Rewrite Module for IIS 7.0 provides flexible rules-based rewrite engine that can be used to perform broad spectrum of URL manipulation tasks, including, but not limited to:</p>
<ul>
<li>Enabling user friendly and search engine friendly URL with dynamic web applications;</li>
<li>Rewriting URL’s based on HTTP headers and server variables;</li>
<li>Web site content handling;</li>
<li>Controlling access to web site content based on URL segments or request metadata."</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1459208/is-it-possible-to-change-web-config-without-ending-all-user-sessions/1460036#14600363Answer by Brad Tutterow for Is it possible to change web.config without ending all user sessions?Brad Tutterow2009-09-22T13:15:19Z2009-09-22T18:26:54Z<p>You can move the volatile portions of the web.config into external files and then set up IIS to not restart applications when those files change.</p>
<p>In the example below, application and connection-string settings have been moved to another file, outside of the web.config. </p>
<pre><code><?xml version="1.0"?>
<configuration>
<appSettings configSource="appSettings.config"/>
<connectionStrings configSource="connections.config"/>
</configuration>
</code></pre>
<p>Once that's done, you can make changes to app settings (or whatever else you put in the external file) without editing the web.config.</p>
<p>You can also visit the machine.config and play with the restartOnExternalChanges attribute, but this should be used with caution as it could have unintended consequences. Some sections, such as app-settings, already have this set to "false".</p>
<pre><code><section name="appSettings" restartOnExternalChanges="false">
</code></pre>
<p>More details are available in this <a href="http://www.odetocode.com/articles/418.aspx" rel="nofollow">OdeToCode article</a>.</p>
http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/1460050#14600500Answer by Brad Tutterow for What single URL should every web developer have bookmarked?Brad Tutterow2009-09-22T13:17:33Z2009-09-22T13:17:33Z<p><a href="http://www.WhoIsTheCutest.com/" rel="nofollow">http://www.WhoIsTheCutest.com/</a></p>
<p>Because web developers are, by nature, insecure beings.</p>
http://stackoverflow.com/questions/1453090/how-to-work-with-silverlight-3-0-with-visual-studio-2008/1454801#14548010Answer by Brad Tutterow for How to work with silverlight 3.0 with visual studio 2008?Brad Tutterow2009-09-21T14:26:35Z2009-09-21T14:26:35Z<p>Also see <a href="http://stackoverflow.com/questions/1365258/developing-silverlight-in-visual-studio-express">Stack Overflow Question 1365258</a></p>
http://stackoverflow.com/questions/1407140/accessing-application-members/1411397#14113971Answer by Brad Tutterow for Accessing application members?Brad Tutterow2009-09-11T14:55:37Z2009-09-14T14:23:16Z<p>If you are going to be accessing these fields frequently, it can be useful to add a property for the current application in either your ViewModel or Xaml.cs for easy access later.</p>
<pre><code>public Application CurrentApp
{
get
{
return Application.Current as App;
}
}
</code></pre>
<p>Then in your page, you can just reference your property</p>
<pre><code>CurrentApp.MyField;
</code></pre>
<p>And yes, a field or property in your App.xamls.cs will be around for the lifetime of the application.</p>
http://stackoverflow.com/questions/1411365/why-does-blend-add-dlayoutoverridesheight-and-should-i-care2Why does Blend add [d:LayoutOverrides="Height"] and should I care?Brad Tutterow2009-09-11T14:50:25Z2009-09-11T16:46:55Z
<p>Quite often when coming back to Visual Studio from Expression Blend 3, I see that Blend has helpfully added a "d:LayoutOverrides" property to my XAML. Growing up with ASP.NET designers, I naturally distrust anything I wouldn't type myself, so remove them as soon as I see them. </p>
<p>I know that "d:" properties are designer-only and don't impact runtime, but can anyone offer any insight into what this property does and why Blend would be so insistent that I have them all over my markup? </p>
<pre><code><Border d:LayoutOverrides="Height" />
</code></pre>
http://stackoverflow.com/questions/1394521/silverlight-user-experience-url-image-displays/1395239#13952390Answer by Brad Tutterow for Silverlight User Experience URL Image Displays?Brad Tutterow2009-09-08T17:30:30Z2009-09-08T17:30:30Z<p>One approach would be to <strong>add the images to your Silverlight application</strong> and then reference them using relative paths. Set the <em>Build Action</em> to "Resource" and <em>Copy to Output Directory</em> to "False". This will embed the image into your Silverlight application. Great for simplicity and performance, but not so great if you have large, plentiful, or constantly changing images.</p>
<pre><code><Image Source="Images/LoRes/10001.JPG" />
</code></pre>
<p>Another approach would be to <strong>deploy the images to the same web server</strong> that is hosting your XAP file. Using this approach, you can still reference the images by a relative path, only now the path is relative to the XAP, instead of the application root folder.</p>
<pre><code><Image Source="../Images/LoRes/10001.JPG" />
</code></pre>
<p>Silverlight also supports absolute URLs so you could <strong>deploy to a different web server</strong> entirely if you like.</p>
<pre><code><Image Source="http://myimages.com/Images/LoRes/10001.JPG" />
</code></pre>
<p>If the database only has image names, and you are doing data-binding, you can write a converter to take the image name and come up with the relative or absolute hyperlink.</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.image%28VS.95%29.aspx?PHPSESSID=ev0v34i8u80gkmn37sd8r65363" rel="nofollow">MSDN documentation for the Image class</a> has more information.</p>
http://stackoverflow.com/questions/1358347/cant-get-a-collection-in-a-entity-class/1368226#13682260Answer by Brad Tutterow for Can't get a collection in a entity classBrad Tutterow2009-09-02T14:56:21Z2009-09-02T14:56:21Z<p>Are you using RIA services to get data from your server to your client? If so, then you'll need to use meta-data and the [Association] attribute so that RIA Services recognizes the relationship.</p>
<pre><code>[MetadataType(typeof(EmployeeMetadata))]
public partial class Employee
{
public int EmployeeId {get; set; }
public EmployeeAddress Address {get; set; }
}
public partial class EmployeeAddress
{
public int EmployeeId {get; set; }
}
public class EmployeeMetaData
{
[Include]
[Association("EmployeeAddress", "EmployeeId", "EmployeeId")]
public EmployeeAddress Address {get; set;}
}
</code></pre>
<p>The example above assumes that both your Employee class and your Address class have an "EmployeeId" property that RIA Services can use to create the association.</p>
<p>More information</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.associationattribute.associationattribute%28VS.95%29.aspx" rel="nofollow">MSDN documentation</a></li>
<li><a href="http://blogs.msdn.com/brada/archive/2009/07/22/business-apps-example-for-silverlight-3-rtm-and-net-ria-services-july-update-part-6-poco-and-authentication-provider.aspx" rel="nofollow">Brad Abrams blog post</a></li>
</ul>
http://stackoverflow.com/questions/1365258/developing-silverlight-in-visual-studio-express/1368139#13681392Answer by Brad Tutterow for Developing Silverlight in Visual Studio Express?Brad Tutterow2009-09-02T14:46:23Z2009-09-02T14:46:23Z<p>The list of things to install to get a working Silverlight development environment up and running is a long one. Here's an ordered list to get a Visual Studio 2008 Silverlight 3 environment going.</p>
<p><strong>1) <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Web Developer 2008</a></strong></p>
<p>This is your basic development environment. Visual Web Developer is required since Silverlight 3 applications can be hosted in an ASP.NET website.</p>
<p><strong>2) <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9442b0f2-7465-417a-88f3-5e7b5409e9dd&displaylang=en" rel="nofollow">Silverlight Tools for Visual Studio 2008 SP1</a></strong></p>
<p>These tools will reconfigure Visual Studio to work properly with Silverlight projects.</p>
<p><strong>3) <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e82db5e2-7106-419e-80b0-65cce89f06bb&displaylang=en" rel="nofollow">Expression Blend 3</a> (optional)</strong></p>
<p>This is the only pay-product on the list but is also optional. Expression Blend is used for designing the user-interface of your Silverlight projects. Simple UI work can be done in Visual Studio but for anything moderately complex, you will want Expression Blend. There is a trial version.</p>
<p><strong>4) <a href="http://go.microsoft.com/fwlink/?LinkID=157133" rel="nofollow">Silverlight Toolkit</a> (optional)</strong></p>
<p>The Silverlight Toolkit contains extra controls and utilities. It is updated more frequently than the core Silverlight binaries.</p>
<p><strong>5) <a href="http://go.microsoft.com/fwlink/?LinkId=144609" rel="nofollow">RIA Services</a> (optional)</strong></p>
<p>RIA services is a framework that tries to make server-client development in Silverlight easier. It comes with a lot of plumbing for server communication, data transfer, and validation. RIA services is in beta as of Sep 2009.</p>
<p><strong>6) <a href="http://www.codeplex.com/silverlightcontrib" rel="nofollow">Silverlight Contrib</a> (optional)</strong></p>
<p>Silverlight contrib is a collection of extra controls and utilities like the Silverlight Toolkit. It is maintained by the community, not by Microsoft, and is meant to overcome some of the shortcomings in Silverlight with free, open-source code.</p>
http://stackoverflow.com/questions/1335667/providing-designtime-viewmodel-data-for-blend-and-vs/1336584#13365842Answer by Brad Tutterow for providing designtime ViewModel data for Blend and VSBrad Tutterow2009-08-26T18:17:49Z2009-08-27T13:20:58Z<p>Yes, Expression Blend can help you with this. Use the "Data" tab to create sample data that has the same shape as your production data. When you create the data source, be sure to uncheck "Enable sample data when application is running".</p>
<p><img src="http://www.smips.com/brad/stackoverflow/design-model1.jpg" alt="Sample Data" /></p>
<p>After you've created your sample data, set the DataContext of your page to the sample data in the XAML. This will let the designers see the sample data when they open the page in Blend.</p>
<pre><code><navigation:Page DataContext={StaticResource MyFakeDesignData}
</code></pre>
<p>In the code for the Loaded handler, write code to set the DataContext to the real model. Since this code will only run when the app is running, and you've told your sample data to not be available when the app is running, this means the running app will get the real data.</p>
<pre><code>private void Home_Loaded(object sender, RoutedEventArgs e)
{
DataContext = new MyRealViewModel();
}
</code></pre>
http://stackoverflow.com/questions/1336002/silverlight-and-dataannotations/1336482#13364820Answer by Brad Tutterow for Silverlight And DataAnnotationsBrad Tutterow2009-08-26T17:59:52Z2009-08-27T13:07:35Z<p>Yes, those can be used for validation without using UI controls. Brad Abrams has a <a href="http://blogs.msdn.com/brada/archive/2009/07/24/business-apps-example-for-silverlight-3-rtm-and-net-ria-services-july-update-part-11-the-client-only-world.aspx" rel="nofollow">blog post</a> with details on using those attributes for data forms, but seems like you should be able to separate the UI portion of his post from the core validation logic.</p>
<p>From the post, here's a sample property with validation logic added manually.</p>
<pre><code>[DataMember()]
[Key()]
[ReadOnly(true)]
public int EmployeeID
{
get
{
return this._employeeID;
}
set
{
if ((this._employeeID != value))
{
ValidationContext context = new ValidationContext(
this, null, null);
context.MemberName = "EmployeeID";
Validator.ValidateProperty(value, context);
this._employeeID = value;
this.OnPropertyChanged("EmployeeID");
}
}
}
</code></pre>
http://stackoverflow.com/questions/1335892/is-databinding-a-good-way-to-connect-a-view-to-a-model/1336440#13364400Answer by Brad Tutterow for Is Databinding a good way to connect a view to a modelBrad Tutterow2009-08-26T17:51:48Z2009-08-26T17:51:48Z<p>Yes, you should definitely definitely use data binding. While WinForms and ASP.NET were always a struggle to get anything data bound consistently and in a maintainable manner, Silverlight and WPF are built from the ground up for data binding pleasure. </p>
<ul>
<li>Binding is <strong>two-way</strong> so you don't have to write tedious plumbing code to move data in and out of your model. Just implement <strong>INotifable</strong> and away you go.</li>
<li><strong>Converters</strong> allow you to write code to handle the way things are bound if the defaults aren't working. Using converters (which are dead-simple to write) you can bind booleans to visibility settings, strings to images, integers to background colors, and so on. The sky's the limit.</li>
<li>Patterns such as <strong>MVVM</strong> are perfect for the rich data-binding support in WPF and Silverlight. MVVM lets you have the best of both worlds: loosely coupled code together with data binding.</li>
<li><strong>Element binding</strong> lets you bind the property one element to the property of another element. Together with converters, this gives you impressive power to do things like bind the current position of a slider control to the selected index of a list control. Both ways.</li>
<li><strong>Deep binding</strong> means you can bind to the property of a property of your model. Not that you always should, but you can. </li>
<li>Binding is almost magical in its <strong>dynamic</strong>-ness. As long as your model continues to support the same bound properties, binding will continue to work even if the static type of the model changes. Binding is also crazy <strong>flexible</strong>. You can bind to collections, interfaces, complex objects, (almost) anything you like.</li>
<li><strong>DataContexts</strong> can be used to set up data-binding at a page, control, or container level. Children of the container then inherit the same data-context. This lets you bind once at the page level and then use binding paths for the rest of the page.</li>
</ul>
http://stackoverflow.com/questions/2550/what-are-effective-options-for-embedding-video-in-an-asp-net-web-site4What are effective options for embedding video in an ASP.NET web site?Brad Tutterow2008-08-05T16:39:04Z2009-06-10T15:11:34Z
<p>A quick glance at the present-day internet would seem to indicate that Adobe Flash is the obvious choice for embedding video in a web page. Is this accurate, or are they other effective choices? Does the choice of ASP.NET as a platform influence this decision?</p>
http://stackoverflow.com/questions/27921/what-is-the-best-way-to-create-a-thumbnail-using-asp-net6What is the "best" way to create a thumbnail using ASP.NET?Brad Tutterow2008-08-26T12:47:35Z2009-06-03T22:00:24Z
<p>Story: The user uploads an image that will be added to a photo gallery. As part of the upload process, we need to A) store the image on the web server's hard drive and B) store a thumbnail of the image on the web server's hard drive.</p>
<p>"Best" here is defined as </p>
<ul>
<li>Relatively easy to implement, understand, and maintain</li>
<li>Results in a thumbnail of reasonable quality</li>
</ul>
<p>Performance and high-quality thumbnails are secondary.</p>
http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/9004#90048Answer by Brad Tutterow for Entity Framework vs LINQ to SQLBrad Tutterow2008-08-12T16:00:26Z2009-05-23T00:14:03Z<p>I think the quick and dirty answer is that</p>
<ul>
<li>LINQ to SQL is the quick-and-easy way to do it. This means you will get going quicker, and deliver quicker if you are working on something smaller.</li>
<li>Entity Framework is the all-out, no-holds-barred way to do it. This means you will take more time up-front, develop slower, and have more flexibility if you are working on something larger.</li>
</ul>
http://stackoverflow.com/questions/773104/public-facing-high-traffic-silverlight-sites/775644#7756442Answer by Brad Tutterow for Public Facing High-Traffic Silverlight SitesBrad Tutterow2009-04-22T04:08:40Z2009-04-28T02:36:54Z<p>The following public-facing sites use Silverlight. I don't have any data to show that they meet your "high-volume" criteria, although I'm sure that NCAA, NBC Olympics, and Microsoft Downloads easily qualify.</p>
<ul>
<li><strong>Hard Rock Memorabilia</strong> (<a href="http://memorabilia.hardrock.com/" rel="nofollow">http://memorabilia.hardrock.com/</a>)</li>
<li><strong>NCAA March Madness</strong> (<a href="http://mmod.ncaa.com/" rel="nofollow">http://mmod.ncaa.com/</a>)</li>
<li><strong>NBC 2010 Olympics</strong> (<a href="http://www.nbcolympics.com" rel="nofollow">http://www.nbcolympics.com</a>)</li>
<li><strong>Netflix</strong> (<a href="http://www.netflix.com" rel="nofollow">http://www.netflix.com</a>)</li>
<li><strong>Smooth HD</strong> (<a href="http://www.smoothhd.com/" rel="nofollow">http://www.smoothhd.com/</a>)</li>
<li><strong>Renault Megane</strong> (<a href="http://www.new-megane.renault.co.uk" rel="nofollow">http://www.new-megane.renault.co.uk</a>)</li>
<li><strong>Microsoft Download Center</strong> (<a href="http://www.microsoft.com/downloads/en/default.aspx" rel="nofollow">http://www.microsoft.com/downloads/en/default.aspx</a>)</li>
</ul>
<p>For even more, check out the Silverlight Showcase at <a href="http://silverlight.net/showcase/" rel="nofollow">http://silverlight.net/showcase/</a>.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780267#7802676Answer by Brad Tutterow for What is the best comment in source code you have ever encountered?Brad Tutterow2009-04-23T04:03:57Z2009-04-23T04:03:57Z<p>Using semi-colons in VB.NET</p>
<pre><code>TextBox2.Visible = True';
For Each row In data.Tables(0).Rows
If row("Customers.Id").ToString <> customerId Then
customerId = row("Customers.ID").ToString';
name = "Customer Name: " & row("Name").ToString & CrLf';
address = "Address: " & row("Address").ToString & CrLf & CrLf';
TextBox2.Text += name & address ';s
End If';
Next';
</code></pre>
http://stackoverflow.com/questions/778601/how-can-i-keep-a-button-textbox-etc-in-session/779577#7795770Answer by Brad Tutterow for How can I keep a Button/TextBox/etc in session?Brad Tutterow2009-04-22T22:43:52Z2009-04-22T22:43:52Z<p>Silverlight runs completely on the client, inside the browser, so there's no need to worry about storing things in session state on the server. Well, unless you are posting back to the server from within your app, but there's no indication in your question that you're doing that.</p>
<p>If you create a button in Silverlight (from a page or control), it will be available to you in that page or control just like any regular old .NET variable. If it's declared as a field, you can get at it from anywhere.</p>
<pre><code>public partial class MainControl : UserControl
{
private Button myButtonToKeepAroundAllTheTime;
protected void TriggerButton_Click(object sender, EventArgs e)
{
myButtonToKeepAroundAllTheTime = new Button()
{
Content = "Click Me",
Height = 20
};
}
}
</code></pre>
http://stackoverflow.com/questions/776635/replicate-vs2008-publish-web-site-from-command-line/776751#7767510Answer by Brad Tutterow for Replicate VS2008 "Publish Web Site" from command lineBrad Tutterow2009-04-22T11:27:12Z2009-04-22T11:27:12Z<p>There's nothing magical about the "Publish..." feature that you couldn't recreate on your own, especially since you are targeting a network file share. </p>
<p>At it's core, all it's doing is copying your files from one place to another. Using NAnt, you can pull this off with a <a href="http://nant.sourceforge.net/release/latest/help/tasks/copy.html" rel="nofollow">copy</a> task or you can use an <a href="http://nant.sourceforge.net/release/latest/help/tasks/exec.html" rel="nofollow">exec</a> task to call <a href="http://technet.microsoft.com/en-us/library/bb491035.aspx" rel="nofollow">xcopy</a> If you're using a build tool other than NAnt, I'm sure there is support for similar tasks.</p>
<p>If you want to leave your raw code and debugging information behind, you can exclude files that end with .cs or .pdb. Both NAnt copy and xcopy provide easy ways to do this.</p>
http://stackoverflow.com/questions/452763/asp-net-mvc-version-of-ruby-on-rails-linktounlesscurrent4ASP.NET MVC Version of Ruby on Rails "link_to_unless_current"Brad Tutterow2009-01-17T03:54:59Z2009-04-22T04:56:11Z
<p>I want to include a link in my SiteMaster (using Html.ActionLink) UNLESS the view that I am linking to is the current view. For example, there is no sense displaying a "Register" link when the user is already seeing the "Register" view.</p>
<p>In Ruby on Rails, I use the <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html" rel="nofollow">"link<code>_</code>to<code>_</code>unless<code>_</code>current"</a> method to do this.</p>
<p>How do I duplicate this behavior in ASP.NET MVC? The best I can come up with is to set a boolean in my controller to indicate that the link should be hidden (since it is current). This seems really awkward compared to the Rails approach, so I think I must be missing something.</p>
http://stackoverflow.com/questions/763729/inheritor-of-the-resourcedictionary-is-expected-whats-mean-this-error/775735#7757350Answer by Brad Tutterow for "Inheritor of the ResourceDictionary is expected" - What's mean this error?Brad Tutterow2009-04-22T04:50:00Z2009-04-22T04:50:00Z<p>Could it be something inside one those .xaml files that's getting you? I copied your code into a new project and didn't see any error messages in either Visual Studio or Expression Blend.</p>
<p><img src="http://www.smips.com/brad/stackoverflow/so-109.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/766170/are-there-any-real-issues-in-silverlight-3-beta/775713#7757131Answer by Brad Tutterow for Are there any real issues in Silverlight 3 beta?Brad Tutterow2009-04-22T04:41:55Z2009-04-22T04:41:55Z<p>I've been using Silverlight 3 and Expression Blend 3 since the day they became available (about a month now) and haven't had any real issues. I've even been able to convert a few Silverlight 3 apps into Silverlight 2 apps in pinch.</p>
<p>Note that once you upgrade to Silverlight 3, you can no longer create Silverlight 2 applications on your machine. This means that any apps you create can only be viewed by others that are running the Silverlight 3 beta.</p>
<blockquote>
<p>Once you install the Silverlight 3
Beta Tools for Visual Studio, your
development environment will be a
Silverlight 3 Beta environment.
Visual Studio 2008 SP1 does not
support multi-targeting for
Silverlight applications so you will
be unable to develop Silverlight 2
applications once these tools are
installed. We recommend that you
install the Silverlight 3 Beta tools
on a separate environment if you still
need to have the ability to develop
Silverlight 2 applications.</p>
<p>Ensure that you have either Visual
Studio 2008 SP1 or Visual Web
Developer Express 2008 SP1 installed
as it is a prerequisite for the
Silverlight 3 Beta Tools for Visual
Studio. Below are the additional
tools you’ll want to get started:</p>
<p><a href="http://silverlight.net/getstarted/silverlight3/default.aspx" rel="nofollow">http://silverlight.net/getstarted/silverlight3/default.aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/763698/silverlight-cutting-off-text-wrapping-it-and-not-displaying-correctly/775697#7756970Answer by Brad Tutterow for Silverlight cutting off text/ wrapping it and not displaying correctlyBrad Tutterow2009-04-22T04:36:56Z2009-04-22T04:36:56Z<p>I think Braulio's onto something. I was able to get it to wrap and size correctly by wrapping the text in a stackpanel in a border. Drop this XAML onto a brand-new user control that does not have a width and height set.</p>
<pre><code><Border CornerRadius="20,20,20,20" BorderBrush="#FF000000" BorderThickness="1,1,1,1"
Height="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="192"
Padding="5">
<Border.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF2100FF"/>
<GradientStop Color="#FFFFFFFF" Offset="1"/>
</LinearGradientBrush>
</Border.Background>
<StackPanel>
<TextBlock x:Name="eventName" Text="Amazing Music" FontSize="24" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Padding="0,0,0,0"/>
<TextBlock x:Name="eventDescription" Text="Amazin music in that house" TextWrapping="Wrap" FontSize="14" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" MaxWidth="300" />
</StackPanel>
</Border>
</code></pre>
http://stackoverflow.com/questions/774801/is-there-value-in-using-a-silverlight-framework/775630#7756301Answer by Brad Tutterow for Is there value in using a Silverlight framework?Brad Tutterow2009-04-22T03:57:49Z2009-04-22T03:57:49Z<p>I don't have any experience with those frameworks, but based just on <a href="http://en.wikipedia.org/wiki/You%5FAin%27t%5FGonna%5FNeed%5FIt" rel="nofollow">YAGNI</a> and the newness of Silverlight 3 and RIA Services, I would just stick with Silverlight 3 and RIA Services until you can prove that you have a need for an additional framework.</p>
<p>I would guess (pure speculation) that the new Silverlight 3 features, together with .NET RIA Services, address many of the same Silverlight shortcomings that those frameworks address.</p>
http://stackoverflow.com/questions/746802/silverlight-delete-content-of-a-specific-cell-in-a-grid/750059#7500592Answer by Brad Tutterow for Silverlight: Delete content of a specific cell in a gridBrad Tutterow2009-04-15T02:15:15Z2009-04-15T02:15:15Z<p>If you know the cell and row that the control lives in, you can use a LINQ statement to grab it.</p>
<p>Here's a LINQ statement that will get the first control that is in column 3, row 4.</p>
<pre><code>var control = (from d in grid.Children
where Grid.GetColumn(d as FrameworkElement) == 3
&& Grid.GetRow(d as FrameworkElement) == 4
select d).FirstOrDefault();
</code></pre>
http://stackoverflow.com/questions/749838/how-do-you-dynamically-place-a-control-on-a-canvas-in-silverlight/750036#7500362Answer by Brad Tutterow for How do you dynamically place a control on a canvas in Silverlight?Brad Tutterow2009-04-15T02:07:24Z2009-04-15T02:07:24Z<p>Placing a control inside a canvas or grid is a two-step process. </p>
<ol>
<li>Add the control to the container's child collection</li>
<li>Set the control's location within the container</li>
</ol>
<p>You've got the 2nd step, but are missing the first.</p>
<p><strong>For a canvas</strong></p>
<pre><code>Button childButton = new Button();
LayoutCanvas.Children.Add(childButton);
Canvas.SetLeft(childButton, 120);
Canvas.SetTop(childButton, 120);
</code></pre>
<p><strong>For a grid</strong></p>
<pre><code>Button childButton = new Button();
LayoutGrid.Children.Add(childButton);
Grid.SetRow(childButton, 2);
Grid.SetColumn(childButton, 2);
</code></pre>
http://stackoverflow.com/questions/20507/give-me-awesome-visual-studio-keyboard-short-cuts/21628#2162822Answer by Brad Tutterow for Give me awesome Visual Studio keyboard short cuts!Brad Tutterow2008-08-22T02:02:42Z2009-03-10T23:05:22Z<p>Here are my most frequently used shortcuts. These are for the <strong>Visual Studio 2008 C# development settings</strong>, so may not work using General or VB.Net settings. </p>
<p><strong>Building and Debugging</strong></p>
<p><kbd>F6</kbd> Build</p>
<p><kbd>ALT</kbd> + <kbd>D</kbd>, <kbd>P</kbd> Attach to process</p>
<p><kbd>ALT</kbd> + <kbd>D</kbd>, <kbd>P</kbd>, <kbd>N</kbd> Attach to NUnit (unless notepad is open, :-))</p>
<p><strong>Text Editor</strong></p>
<p><kbd>CTRL</kbd> + <kbd>X</kbd> Remove current line and place it on the clipboard</p>
<p><kbd>ALT</kbd> + <kbd>SHIFT</kbd> + <kbd>T</kbd> Swap the current line with the line below it</p>
<p><kbd>CTRL</kbd> + <kbd>K</kbd>, <kbd>C</kbd> Comment</p>
<p><kbd>CTRL</kbd> + <kbd>K</kbd>, <kbd>U</kbd> Uncomment</p>
<p><kbd>CTRL</kbd> + <kbd>M</kbd>, <kbd>M</kbd> Toggle Outlines</p>
<p><kbd>CTRL</kbd> + <kbd>M</kbd>, <kbd>0</kbd> Collapse to Definitions </p>
<p><strong>IDE</strong></p>
<p><kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>L</kbd> Show the Solution Explorer</p>
<p><kbd>F4</kbd> Show the Properties window</p>
<p><kbd>ALT</kbd> + <kbd>SHIFT</kbd> + <kbd>ENTER</kbd> Full Screen</p>
<p><kbd>ALT</kbd> + <kbd>W</kbd>, <kbd>L</kbd> Close all the open documents</p>
<p><kbd>ALT</kbd> + <kbd>F4</kbd> Go Home for the Day</p>
<p><kbd>CTRL</kbd> + <kbd>SHIFT</kbd> + <kbd>A</kbd> Add new file</p>
<p><strong>Refactoring</strong></p>
<p><kbd>F2</kbd> Rename</p>
<p><kbd>ALT</kbd> + <kbd>SHIFT</kbd> + <kbd>F10</kbd> Open "Smart Tag" menu - Great for adding "usings" without typing.</p>
<p><kbd>SHIFT</kbd> + <kbd>F12</kbd> Find all References</p>
<p><kbd>F12</kbd> Find Definition</p>
http://stackoverflow.com/questions/776635/replicate-vs2008-publish-web-site-from-command-line/776751#776751Comment by Brad Tutterow on Replicate VS2008 "Publish Web Site" from command lineBrad Tutterow2009-04-22T22:34:30Z2009-04-22T22:34:30ZYep, my misunderstanding. I was thinking web application, not web site.