User Edward Tanguay - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:30:34Zhttp://stackoverflow.com/feeds/user/4639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803712/is-it-possible-to-use-xamlreader-from-a-xaml-file-to-load-in-a-block-of-xaml-text0Is it possible to use XamlReader from a XAML file to load in a block of XAML text?Edward Tanguay2009-11-26T13:38:26Z2009-11-29T09:55:36Z
<p>I use the following DataTemplate in <strong>many</strong> controls:</p>
<pre><code><pages:BasePageManageItems x:Class="TestApp.Pages.PageManageAddresses"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:pages="clr-namespace:TestHistorierung.Pages"
xmlns:tk="http://schemas.microsoft.com/wpf/2008/toolkit"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="#eee"
VerticalAlignment="Stretch">
<pages:BasePageManageItems.Resources>
<DataTemplate x:Key="manageAreaCellTemplate">
<Border Padding="2">
<StackPanel Orientation="Horizontal">
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Delete" MouseDown="System_Delete_Click"
Margin="0 0 5 0"/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Edit" MouseDown="System_Edit_Click"
Margin="0 0 5 0"/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Add" MouseDown="System_Add_Click"
Margin="0 0 5 0"/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Copy" MouseDown="System_Copy_Click"
Margin="0 0 5 0"/>
</StackPanel>
</Border>
</DataTemplate>
</pages:BasePageManageItems.Resources>
</code></pre>
<p><strong>Is there any way to use XamlReader from XAML so that I can simply load the <em>text</em> of the DataTemplate into the XAML file dynamically?</strong> I'm imagining something like this (pseudo code):</p>
<pre><code><pages:BasePageManageItems x:Class="TestApp.Pages.PageManageAddresses"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:pages="clr-namespace:TestHistorierung.Pages"
xmlns:tk="http://schemas.microsoft.com/wpf/2008/toolkit"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="#eee"
VerticalAlignment="Stretch">
<pages:BasePageManageItems.Resources>
<XamlReader Load="XamlBlocks/DateTemplateManageButtons.xaml"/>
</pages:BasePageManageItems.Resources>
</code></pre>
http://stackoverflow.com/questions/1811265/how-can-make-all-my-user-control-dependency-values-load-before-they-control-acces0How can make all my user control dependency values load before they control accesses their values?Edward Tanguay2009-11-28T01:36:46Z2009-11-28T02:10:01Z
<p>When I call this custom control, I have to put the attribute values in the <strong>correct order</strong> since the third dependency property (<strong>ItemTypeIdCode</strong>) accesses the values of the first two (<strong>KeyField, ValueField</strong>) to look up data in the database, and if they come after the first attribute, then their values are empty.</p>
<pre><code><controls:DropDown x:Name="TheItemTypes"
KeyField="idCode" ValueField="title"
ItemTypeIdCode="itemTypes"
Width="150" HorizontalAlignment="Left" Margin="0 0 0 5"/>
</code></pre>
<p><strong>How can I make the order of my user control attributes arbitrary?</strong> i.e. so that they all load their values first before any of them register as changed?</p>
<p>Here is the code for my user control:</p>
<pre><code>using System.Windows;
using System.Collections.Generic;
using TestApp.DataLayer;
namespace TestApp.Controls
{
public partial class DropDown : DependencyComboBox
{
#region DependencyProperty: ItemTypeIdCode
public string ItemTypeIdCode
{
get
{
if (GetValue(ItemTypeIdCodeProperty) != null)
return GetValue(ItemTypeIdCodeProperty).ToString();
else
return "";
}
set { SetValue(ItemTypeIdCodeProperty, value); }
}
public static readonly DependencyProperty ItemTypeIdCodeProperty =
DependencyProperty.Register("ItemTypeIdCode", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnItemTypeIdCodePropertyChanged));
private static void OnItemTypeIdCodePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("ItemTypeIdCode");
dropDown.OnItemTypeIdCodePropertyChanged(e);
}
private void OnItemTypeIdCodePropertyChanged(DependencyPropertyChangedEventArgs e)
{
Items.Clear();
foreach (var kvp in Datasource.GetInstance().GetKeyValues(ItemTypeIdCode + "(" + KeyField + "," + ValueField + "); all; orderby displayOrder"))
{
Items.Add(new KeyValuePair<string, string>(kvp.Key, kvp.Value));
}
this.SelectedIndex = 0;
}
#endregion
#region DependencyProperty: KeyField
public string KeyField
{
get
{
if (GetValue(KeyFieldProperty) != null)
return GetValue(KeyFieldProperty).ToString();
else
return "";
}
set { SetValue(KeyFieldProperty, value); }
}
public static readonly DependencyProperty KeyFieldProperty =
DependencyProperty.Register("KeyField", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnKeyFieldPropertyChanged));
private static void OnKeyFieldPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("KeyField");
dropDown.OnKeyFieldPropertyChanged(e);
}
private void OnKeyFieldPropertyChanged(DependencyPropertyChangedEventArgs e)
{
}
#endregion
#region DependencyProperty: ValueField
public string ValueField
{
get
{
if (GetValue(ValueFieldProperty) != null)
return GetValue(ValueFieldProperty).ToString();
else
return "";
}
set { SetValue(ValueFieldProperty, value); }
}
public static readonly DependencyProperty ValueFieldProperty =
DependencyProperty.Register("ValueField", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnValueFieldPropertyChanged));
private static void OnValueFieldPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("ValueField");
dropDown.OnValueFieldPropertyChanged(e);
}
private void OnValueFieldPropertyChanged(DependencyPropertyChangedEventArgs e)
{
}
#endregion
public DropDown()
{
InitializeComponent();
DataContext = this;
}
}
}
</code></pre>
http://stackoverflow.com/questions/54104/is-there-any-way-to-enable-code-completion-for-perl-in-vim12Is there any way to enable code completion for Perl in vim?Edward Tanguay2008-09-10T13:57:07Z2009-11-27T19:39:40Z
<p>Surprisingly as you get good at vim, you can code even faster than standard IDEs such as Eclipse. But one thing I really miss is code completion, especially for long variable names and functions.</p>
<p>Is there any way to enable code completion for Perl in vim?</p>
http://stackoverflow.com/questions/1808204/why-does-my-custom-usercontrols-dependency-property-not-work-with-binding0Why does my Custom UserControl's dependency property not work with binding?Edward Tanguay2009-11-27T11:29:12Z2009-11-27T12:12:07Z
<p>My Custom UserControl's dependency property <strong>will</strong> bind correctly if the value is <strong>statically</strong> defined in the XAML calling it, like this:</p>
<pre><code>ItemTypeIdCode="addresses"
</code></pre>
<p>but not if the value is bound <strong>dynamically</strong> itself:</p>
<pre><code>ItemTypeIdCode="{Binding ItemTypeIdCode}"
</code></pre>
<p><strong>What do I have to do to my custom UserControl so that it's dependency property reacts to the value that is bound itself in another control?</strong></p>
<p>Here is my code:</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestDepenProp.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:TestDepenProp.Controls"
Title="Window1" Height="300" Width="300">
<StackPanel
HorizontalAlignment="Left"
Margin="10">
<controls:DropDown
ItemTypeIdCode="{Binding ItemTypeIdCode}"
SelectedValue="672"
Width="150"
Margin="0 0 0 5"/>
<TextBlock Text="{Binding ItemTypeIdCode}"/>
</StackPanel>
</Window>
</code></pre>
<p><strong>Code-Behind:</strong></p>
<pre><code>using System.Windows;
using System.ComponentModel;
namespace TestDepenProp
{
public partial class Window1 : Window, INotifyPropertyChanged
{
#region ViewModelProperty: ItemTypeIdCode
private string _itemTypeIdCode;
public string ItemTypeIdCode
{
get
{
return _itemTypeIdCode;
}
set
{
_itemTypeIdCode = value;
OnPropertyChanged("ItemTypeIdCode");
}
}
#endregion
public Window1()
{
InitializeComponent();
DataContext = this;
ItemTypeIdCode = "addresses";
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
<p><strong>DropDown.xaml:</strong></p>
<pre><code><UserControl x:Class="TestDepenProp.Controls.DropDown"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<ComboBox SelectedValuePath="Key"
DisplayMemberPath="Value"
SelectedValue="{Binding SelectedValue}"
Margin="0 0 0 10"
ItemsSource="{Binding DropDownValues}" />
</StackPanel>
</UserControl>
</code></pre>
<p><strong>DropDown.xaml.cs:</strong></p>
<pre><code>using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
using System.Collections.ObjectModel;
using System.Collections.Generic;
namespace TestDepenProp.Controls
{
public partial class DropDown : UserControl, INotifyPropertyChanged
{
public static readonly DependencyProperty ItemTypeIdCodeProperty = DependencyProperty.Register("ItemTypeIdCode", typeof(string), typeof(DropDown));
public string ItemTypeIdCode
{
get { return (string)GetValue(ItemTypeIdCodeProperty); }
set { SetValue(ItemTypeIdCodeProperty, value); }
}
#region ViewModelProperty: DropDownValues
private ObservableCollection<KeyValuePair<string, string>> _dropDownValues = new ObservableCollection<KeyValuePair<string, string>>();
public ObservableCollection<KeyValuePair<string, string>> DropDownValues
{
get
{
return _dropDownValues;
}
set
{
_dropDownValues = value;
OnPropertyChanged("DropDownValues");
}
}
#endregion
#region ViewModelProperty: SelectedValue
private string _selectedValue;
public string SelectedValue
{
get
{
return _selectedValue;
}
set
{
_selectedValue = value;
OnPropertyChanged("SelectedValue");
}
}
#endregion
public DropDown()
{
InitializeComponent();
DataContext = this;
Loaded += new RoutedEventHandler(DropDown_Loaded);
}
void DropDown_Loaded(object sender, RoutedEventArgs e)
{
GetDropDownValues();
}
void GetDropDownValues()
{
switch (ItemTypeIdCode)
{
case "addresses":
DropDownValues.Add(new KeyValuePair<string, string>("111", "762 Main St."));
DropDownValues.Add(new KeyValuePair<string, string>("222", "7384 First Ave."));
DropDownValues.Add(new KeyValuePair<string, string>("333", "8728 Second St."));
break;
case "customers":
DropDownValues.Add(new KeyValuePair<string, string>("672", "Jim Smith"));
DropDownValues.Add(new KeyValuePair<string, string>("281", "James Anders"));
DropDownValues.Add(new KeyValuePair<string, string>("321", "Angie Wonderson"));
DropDownValues.Add(new KeyValuePair<string, string>("221", "Hal Cloud"));
DropDownValues.Add(new KeyValuePair<string, string>("123", "Hugh Brandley"));
break;
default:
break;
}
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
http://stackoverflow.com/questions/1803422/what-is-the-best-way-to-reuse-blocks-of-xaml4What is the best way to reuse blocks of XAML?Edward Tanguay2009-11-26T12:31:32Z2009-11-27T10:49:05Z
<p>I've got many user controls like this:</p>
<p><strong>PageManageCustomers.xaml.cs:</strong></p>
<pre><code>public partial class PageManageCustomers : BasePage
{
...
}
</code></pre>
<p>which inherit from:</p>
<p><strong>PageBase.cs:</strong></p>
<pre><code>public class BasePage : UserControl, INotifyPropertyChanged
{
...
}
</code></pre>
<p>Since <strong>PageBase.cs</strong> has <strong>no accompanying XAML file</strong>, I have to put the XAML that it refers to in <strong>each</strong> of the user controls which inherit it, e.g. the following block is repeated in <strong>every</strong> XAML file of every control that inherits <code>PageBase</code>:</p>
<pre><code><DataTemplate x:Key="manageAreaCellTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Delete" MouseDown="System_Delete_Click"/>
<TextBlock Text=" "/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Edit" MouseDown="System_Edit_Click"/>
</StackPanel>
</DataTemplate>
</code></pre>
<p>I'm trying to put this block into a <strong>resource file</strong> but can't get the syntax right, it says:</p>
<blockquote>
<p>'ResourceDictionary' root element
requires a x:Class attribute to
support event handlers in the XAML
file. Either remove the event handler
for the MouseDown event, or add a
x:Class attribute to the root element.</p>
</blockquote>
<p>Or perhaps I could read these blocks in with <strong>XamlReader</strong>` somehow?</p>
<p><strong>How can I put this repeated block of code in one place so that it is not repeated in every XAML file that inherits BagePage?</strong></p>
<h1>Here is a reproducable example of this problem:</h1>
<p><strong>Window1.xaml:</strong></p>
<pre><code><Window x:Class="TestXamlPage8283.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">
<StackPanel x:Name="MainContent"/>
</Window>
</code></pre>
<p><strong>Window1.xaml.cs:</strong></p>
<pre><code>using System.Windows;
namespace TestXamlPage8283
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
Page1 page1 = new Page1();
MainContent.Children.Add(page1);
Page2 page2 = new Page2();
MainContent.Children.Add(page2);
}
}
}
</code></pre>
<p><strong>Page1.xaml:</strong></p>
<pre><code><local:BasePage x:Class="TestXamlPage8283.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestXamlPage8283"
Height="40" Width="300">
<StackPanel>
<TextBlock Text="{Binding PageTitle}"
FontSize="14"
FontWeight="Bold"/>
<TextBlock Text="This is XAML that is specific to page one." />
</StackPanel>
</local:BasePage>
</code></pre>
<p><strong>Page1.xaml.cs:</strong></p>
<pre><code>namespace TestXamlPage8283
{
public partial class Page1 : BasePage
{
public Page1()
{
InitializeComponent();
PageTitle = "Page One";
}
}
}
</code></pre>
<p><strong>Page2.xaml:</strong></p>
<pre><code><local:BasePage x:Class="TestXamlPage8283.Page2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestXamlPage8283"
Height="40" Width="300">
<StackPanel>
<TextBlock Text="{Binding PageTitle}"
FontSize="14"
FontWeight="Bold"/>
<TextBlock Text="This is XAML that is specific to page two." />
</StackPanel>
</local:BasePage>
</code></pre>
<p><strong>Page2.xaml.cs:</strong></p>
<pre><code>namespace TestXamlPage8283
{
public partial class Page2 : BasePage
{
public Page2()
{
InitializeComponent();
PageTitle = "Page Two";
}
}
}
</code></pre>
<p><strong>BasePage.cs:</strong></p>
<pre><code>using System.Windows.Controls;
using System.ComponentModel;
namespace TestXamlPage8283
{
public class BasePage : UserControl, INotifyPropertyChanged
{
#region ViewModelProperty: PageTitle
private string _pageTitle;
public string PageTitle
{
get
{
return _pageTitle;
}
set
{
_pageTitle = value;
OnPropertyChanged("PageTitle");
}
}
#endregion
public BasePage()
{
DataContext = this;
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
<p><strong>How do I take <em>this</em> block</strong></p>
<pre><code><TextBlock Text="{Binding PageTitle}"
FontSize="14"
FontWeight="Bold"/>
</code></pre>
<p><strong><em>out</em> of Page1.xaml and Page2.xaml and put it in <em>one</em> place so I can <em>refer</em> to it from Page1.xaml and Page2.xaml?</strong> (so that when I want to change FontSize=14 to FontSize=16, I just have to change it in one place)</p>
http://stackoverflow.com/questions/1782348/how-to-process-multiple-where-clauses-in-a-linq-statement0How to process multiple where clauses in a LINQ statement?Edward Tanguay2009-11-23T10:47:40Z2009-11-27T06:44:09Z
<p>Thanks to those who answered my <a href="http://stackoverflow.com/questions/1782079/how-can-i-send-where-statements-to-a-method-which-are-dynamically-executed-in-a-l">last question</a> I got the code below to work which allows the developer to send multiple where clauses to a method which includes each of them in a LINQ statement. <strong>However, how can I get the inclusion of the where clauses to be dynamic?</strong> Instead of this:</p>
<pre><code>return customers
.Where(whereClauses[0])
.Where(whereClauses[1])
.ToList();
</code></pre>
<p>something like this (pseudo-code):</p>
<pre><code>List<Customer> customers = new List<Customer>();
foreach (var whereClause in whereClauses)
{
customers
.Where(whereClause...???)
.ToList();
}
return customers;
</code></pre>
<p><strong>Here is the code that works:</strong></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
namespace TestDynamicLinq2343
{
public class Program
{
static void Main(string[] args)
{
List<Customer> customers = Customer.GetCustomers();
List<Func<Customer, bool>> whereClauses = new List<Func<Customer, bool>>();
whereClauses.Add(c => c.LastName.ToUpper().Contains("A"));
whereClauses.Add(c => c.FirstName.ToUpper().Contains("J"));
foreach (var customer in Customer.GetFilteredCustomers(customers, whereClauses))
{
Console.WriteLine(customer.LastName);
}
Console.ReadLine();
}
}
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string Location { get; set; }
public string ZipCode { get; set; }
public static List<Customer> GetCustomers()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer { FirstName = "Jim", LastName = "Jones" });
customers.Add(new Customer { FirstName = "Joe", LastName = "Adams" });
customers.Add(new Customer { FirstName = "Jake", LastName = "Johnson" });
customers.Add(new Customer { FirstName = "Angie", LastName = "Reckar" });
customers.Add(new Customer { FirstName = "Jean", LastName = "Anderson" });
return customers;
}
public static List<Customer> GetFilteredCustomers(List<Customer> customers, List<Func<Customer, bool>> whereClauses)
{
return customers
.Where(whereClauses[0])
.Where(whereClauses[1])
.ToList();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1805152/why-does-linq-to-sql-not-create-singular-class-for-table-named-applicationmenus1Why does LINQ-to-SQL not create singular class for table named "ApplicationMenus"?Edward Tanguay2009-11-26T18:48:29Z2009-11-26T18:53:33Z
<p>When I generate LINQ-to-SQL classes for a table named <strong>ApplicationMenus</strong> it doesn't create a <strong>singular</strong> class for it so that the statement:</p>
<pre><code>ApplicationMenu applicationMenu = new ApplicationMenu();
</code></pre>
<p>gives an error.</p>
<p>If I <strong>change the name</strong> of the table to one of these:</p>
<pre><code>Menus
ApplicationMenuItems
</code></pre>
<p>then it correctly generates the singular class.</p>
<p><strong>Why does LINQ-to-SQL have a problem with "ApplicationMenus" and what other names will cause a problem as well?</strong></p>
<p><img src="http://i46.tinypic.com/alizxt.png" alt="alt text"></p>
http://stackoverflow.com/questions/1804302/where-is-the-data-for-properties-settings-default-saved1Where is the data for Properties.Settings.Default saved?Edward Tanguay2009-11-26T15:25:13Z2009-11-26T15:46:35Z
<p>In my WPF application, I click on <strong>Settings.settings</strong> in the Solution Explorer and enter a <strong>StringCollection</strong> variable with a <strong>User</strong> scope:</p>
<p><img src="http://i45.tinypic.com/24xdmir.png" alt="alt text"></p>
<p>in my app.config I see that they are saved there:</p>
<pre><code><userSettings>
<TestSettings.Properties.Settings>
<setting name="Paths" serializeAs="Xml">
<value>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>one</string>
<string>two</string>
<string>three</string>
<string>four</string>
<string>five</string>
<string>six</string>
<string>seven</string>
</ArrayOfString>
</value>
</setting>
</TestSettings.Properties.Settings>
</userSettings>
</code></pre>
<p>then I <strong>run my application</strong> and with this code:</p>
<pre><code>StringCollection paths = Properties.Settings.Default.Paths;
Properties.Settings.Default.Paths.Add("added in code");
Properties.Settings.Default.Save();
foreach (var path in paths)
{
System.Console.WriteLine(path);
}
</code></pre>
<p>which gives me this <strong>output</strong>:</p>
<pre><code>one
two
three
four
five
six
seven
added in code
</code></pre>
<p>I <strong>run the application again</strong> and it gives me this output:</p>
<pre><code>one
two
three
four
five
six
seven
added in code
added in code
</code></pre>
<p>But I look at my <strong>app.config</strong> again and it still has the <strong>original values</strong>:</p>
<pre><code><userSettings>
<TestSettings.Properties.Settings>
<setting name="Paths" serializeAs="Xml">
<value>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>one</string>
<string>two</string>
<string>three</string>
<string>four</string>
<string>five</string>
<string>six</string>
<string>seven</string>
</ArrayOfString>
</value>
</setting>
</TestSettings.Properties.Settings>
</userSettings>
</code></pre>
<p><strong>Where are the values that are added by the application being saved?</strong></p>
http://stackoverflow.com/questions/1783771/where-do-you-put-global-variables-in-a-wpf-application0Where do you put global variables in a WPF application?Edward Tanguay2009-11-23T15:18:19Z2009-11-25T20:21:30Z
<p>In <strong>PHP</strong> web programming, I always made a <strong>singleton Output object</strong> in which I could put <strong>global</strong> information that had to be available from any line of code.</p>
<p>So in <strong>WPF</strong> applications, I create the following class to perform the same function, e.g. the variable <strong><code>ReturnToPageIdCode</code></strong> returns the page to which another page is supposed to return to after processing some task, and I can set and get that value anywhere I want.</p>
<p>This works nicely.</p>
<p>However, I can't help to think that in the <strong>stateful</strong> WPF environment, I'm <strong>recreating the wheel</strong> with this singleton Output object.</p>
<p><strong>Where do you put hold application-wide values in your WPF applications? Is there some standard place to do this?</strong></p>
<pre><code>public class Output
{
private Output output;
private static Output instance;
public string ReturnToPageIdCode { get; set; }
public static Output GetInstance()
{
if (instance == null)
{
instance = new Output();
}
return instance;
}
public string GetTestMessage()
{
return "This is a global test message from the output singleton.";
}
}
</code></pre>
http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links8How to remove Firefox's dotted outline on BUTTONS as well as links?Edward Tanguay2008-09-16T10:35:13Z2009-11-25T09:07:16Z
<p>I can make Firefox not display the ugly dotted focus outlines on <b>links</b> with this:</p>
<pre><code>a:focus {
outline: none;
}
</code></pre>
<p>But how can I do this for <code><button></code> tags as well? When I do this:</p>
<pre><code>button:focus {
outline: none;
}
</code></pre>
<p>the buttons still have the dotted focus outline when I click on them.</p>
<p>(and yes, I know this is a usability issue, but I would like to provide my own focus hints which are appropriate to the design instead of ugly grey dots)</p>
http://stackoverflow.com/questions/443193/how-much-logic-is-allowed-in-asp-net-mvc-views4How much logic is allowed in ASP.NET MVC views?Edward Tanguay2009-01-14T14:40:49Z2009-11-25T00:07:47Z
<p>In looking at samples of ASP.NET MVC sites, I'm seeing quite a bit of examples with embedded logic in the views, e.g.:</p>
<pre><code><% if (customerIsAllowed)
{ %>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<% } else {%>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<p>nnn</p>
<% } %>
</code></pre>
<p>Although this seems wrong to me since it is the kind of thing we were trying to get away from in ASP 3.0, I have even heard in some podcasts how "a little bit of logic in view is ok" since the rest of the MVC framework is taking care of the structure that we didn't have in ASP 3.0.</p>
<p>Are there any MVC conventions specifying what kind and how much logic is allowed in views?</p>
http://stackoverflow.com/questions/1778449/is-there-any-way-to-bind-a-method-to-a-datatemplate-of-a-listbox1Is there any way to bind a method to a DataTemplate of a ListBox?Edward Tanguay2009-11-22T11:17:34Z2009-11-23T16:19:46Z
<p>The following example successfully shows the property <strong>Title</strong> in the ListBox, but is there a way to show method <strong>GetTitle()</strong> so that I don't have to turn all my methods into properties?</p>
<p>e.g. neither of these seem to work:</p>
<pre><code><TextBlock Text="{Binding GetTitle}"/>
<TextBlock Text="{Binding GetTitle()}"/>
</code></pre>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestBindMethod8938.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">
<Grid>
<ListBox DockPanel.Dock="Top" ItemsSource="{Binding BackupTasks}" Margin="0 10 0 0">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Title}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Windows;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace TestBindMethod8938
{
public partial class Window1 : Window, INotifyPropertyChanged
{
#region ViewModelProperty: BackupTasks
private ObservableCollection<BackupTask> _backupTasks = new ObservableCollection<BackupTask>();
public ObservableCollection<BackupTask> BackupTasks
{
get
{
return _backupTasks;
}
set
{
_backupTasks = value;
OnPropertyChanged("BackupTasks");
}
}
#endregion
public Window1()
{
InitializeComponent();
DataContext = this;
BackupTasks.Add(new BackupTask(@"c:\test", @"c:\test2"));
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
public class BackupTask
{
public string SourceFolder { get; set; }
public string TargetFolder { get; set; }
public int NumberOfFilesToBackup { get; set; }
public string Title
{
get
{
return SourceFolder + " --> " + TargetFolder + " (" + NumberOfFilesToBackup + ")";
}
set
{
}
}
public BackupTask(string sourceFolder, string targetFolder)
{
SourceFolder = sourceFolder;
TargetFolder = targetFolder;
}
public string GetTitle()
{
return SourceFolder + " --> " + TargetFolder + " (" + NumberOfFilesToBackup + ")";
}
}
}
</code></pre>
http://stackoverflow.com/questions/1782577/what-is-the-best-approach-to-build-dynamic-linq-queries0What is the best approach to build dynamic LINQ queries?Edward Tanguay2009-11-23T11:30:40Z2009-11-23T15:05:51Z
<p>Thanks to those who answered my last couple questions, I got the <strong>following code to work</strong> which allows you to send a <strong>collection of Where clauses</strong> to a method which are all attached to a LINQ query. This is going to work for the case at hand that I need.</p>
<p>However, what is the best approach to <strong>extend</strong> this so that:</p>
<ul>
<li><strong>OrderBy</strong> clauses can be sent</li>
<li>Where clauses can be combined with <strong>"OR" logic</strong> and not only with "AND" logic</li>
<li>other options can be sent dynamically, e.g. what fields are included in the object sent back (e.g. so that it does not always have to be Customer, in the example below)</li>
</ul>
<p>Basically, the background of this is to be able to dynamically build a LINQ query from this form a parsed configuration file or from user input.</p>
<p>The task reminds me of building classes which could <strong>dynamically produce SQL statements</strong> based on parameters, but that involved building a <strong>string</strong> (SQL Statement) which was more straight-forward than dynamically building a LINQ query.</p>
<p>There are many Stackoverflow questions and <a href="http://blog.bvsoftware.com/post/2008/02/27/How-to-create-a-Dynamic-LINQ-Query-Programmatically.aspx" rel="nofollow">blog posts</a> about this topic, but they each seem to be individual solutions to individual problems, but is there an API or library that is emerging as a standard for building dynamic LINQ queries, e.g. <strong>so I can easily take a DSL syntax and translate it into LINQ, e.g. "FirstName startswith 'a' and (state='co' or state='ca')"?</strong></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
namespace TestDynamicLinq2343
{
public class Program
{
static void Main(string[] args)
{
List<Customer> customers = Customer.GetCustomers();
List<Func<Customer, bool>> whereClauses = new List<Func<Customer, bool>>();
whereClauses.Add(c => c.LastName.ToUpper().Contains("A"));
whereClauses.Add(c => c.FirstName.ToUpper().Contains("O"));
whereClauses.Add(c => c.FirstName.ToUpper().Contains("E"));
foreach (var customer in Customer.GetFilteredCustomers(customers, whereClauses))
{
Console.WriteLine(customer.LastName);
}
Console.ReadLine();
}
}
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string Location { get; set; }
public string ZipCode { get; set; }
public static List<Customer> GetCustomers()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer { FirstName = "Jim", LastName = "Jones" });
customers.Add(new Customer { FirstName = "Joe", LastName = "Adams" });
customers.Add(new Customer { FirstName = "Jake", LastName = "Johnson" });
customers.Add(new Customer { FirstName = "Angie", LastName = "Reckar" });
customers.Add(new Customer { FirstName = "Jean", LastName = "Anderson" });
return customers;
}
public static List<Customer> GetFilteredCustomers(List<Customer> customers, List<Func<Customer, bool>> whereClauses)
{
IEnumerable<Customer> dbCustomers = customers;
foreach (var whereClause in whereClauses)
{
dbCustomers = dbCustomers.Where(whereClause);
}
return dbCustomers.ToList();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1757339/how-can-i-programatically-create-a-wpf-toolkit-datagridtemplatecolumn0How can I programatically create a WPF Toolkit DataGridTemplateColumn?Edward Tanguay2009-11-18T16:40:56Z2009-11-23T13:24:20Z
<p>I was able to recreate this XAML <strong>DataGridTextColumn</strong>:</p>
<pre><code><tk:DataGridTextColumn
Binding="{Binding FirstName}"
Header="First Name"/>
</code></pre>
<p>in <strong>code</strong> like this:</p>
<pre><code>DataGridTextColumn dgtc = new DataGridTextColumn();
dgtc.Header = propertyLabel;
dgtc.Binding = new Binding(propertyName);
theDataGrid.Columns.Add(dgtc);
</code></pre>
<p><strong>But how do I recreate the following DataGridTemplateColumn in code?</strong></p>
<pre><code><tk:DataGridTemplateColumn Width="100">
<tk:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Delete" MouseDown="System_Delete_Click"/>
<TextBlock Text=" "/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Edit" MouseDown="System_Edit_Click"/>
</StackPanel>
</DataTemplate>
</tk:DataGridTemplateColumn.CellTemplate>
</tk:DataGridTemplateColumn>
</code></pre>
<p>i.e. I'm getting stuck on defining the CellTemplate:</p>
<pre><code>DataGridTemplateColumn dgTemplateColumn = new DataGridTemplateColumn();
dgTemplateColumn.CellTemplate = new CellTemplate ...???
</code></pre>
<h1>Answer:</h1>
<p>Thank you Aran, just referring to the template key in XAML works well for what I needed, here is how I changed the above to work for me:</p>
<p><strong>XAML:</strong></p>
<pre><code><Window.Resources>
<DataTemplate x:Key="manageAreaCellTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Delete" MouseDown="System_Delete_Click"/>
<TextBlock Text=" "/>
<TextBlock Style="{DynamicResource ManageLinkStyle}"
Tag="{Binding Id}" Text="Edit" MouseDown="System_Edit_Click"/>
</StackPanel>
</DataTemplate>
</Window.Resources>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>DataGridTemplateColumn dgTemplateColumn = new DataGridTemplateColumn();
dgTemplateColumn.Width = new DataGridLength(1, DataGridLengthUnitType.Star);
dgTemplateColumn.Header = "Manage Options";
dgTemplateColumn.CellTemplate = this.FindResource("manageAreaCellTemplate") as DataTemplate;
theDataGrid.Columns.Add(dgTemplateColumn);
</code></pre>
http://stackoverflow.com/questions/1782079/how-can-i-send-where-statements-to-a-method-which-are-dynamically-executed-in-a-l1How can I send where statements to a method which are dynamically executed in a LINQ statement?Edward Tanguay2009-11-23T09:39:57Z2009-11-23T10:42:04Z
<p>In the following example, <strong>GetFilteredCustomers()</strong> works fine so I can send various letters which I want customers to have in their last name.</p>
<p><strong>But how can I build GetFilteredCustomersDynamic() which will enable me to send a full where clause that can be dynamically included in the LINQ statement?</strong></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TestDynamicLinq2343
{
public class Program
{
static void Main(string[] args)
{
List<Customer> customers = Customer.GetCustomers();
//semi-dynamic
foreach (var customer in Customer.GetFilteredCustomers(customers, "o"))
{
Console.WriteLine(customer.LastName);
}
//fully-dyanmic (can send where clauses)
foreach (var customer in Customer.GetFilteredCustomersDynamic(customers, c => c.FirstName.Contains("a")))
{
Console.WriteLine(customer.LastName);
}
Console.ReadLine();
}
}
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string Location { get; set; }
public string ZipCode { get; set; }
public static List<Customer> GetCustomers()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer { FirstName = "Jim", LastName = "Jones" });
customers.Add(new Customer { FirstName = "Joe", LastName = "Adams" });
customers.Add(new Customer { FirstName = "Jake", LastName = "Johnson" });
return customers;
}
public static List<Customer> GetFilteredCustomers(List<Customer> customers, string letter)
{
return (from c in customers
where c.LastName.Contains(letter)
select c).ToList();
}
public static List<Customer> GetFilteredCustomersDynamic(List<Customer> customers, Func<..., bool> whereClause)
{
return (from c in customers
where ...whereClause...
select c).ToList();
}
}
}
</code></pre>
<h1>Answer:</h1>
<p>thanks elder_george and arjuns, I got this example to work like this (albeit without the <code>Expression<></code> ):</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
namespace TestDynamicLinq2343
{
public class Program
{
static void Main(string[] args)
{
List<Customer> customers = Customer.GetCustomers();
Func<Customer, bool> whereClause = c => c.LastName.Contains("a") && c.FirstName.Contains("J");
foreach (var customer in Customer.GetFilteredCustomers(customers, whereClause))
{
Console.WriteLine(customer.LastName);
}
Console.ReadLine();
}
}
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string Location { get; set; }
public string ZipCode { get; set; }
public static List<Customer> GetCustomers()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer { FirstName = "Jim", LastName = "Jones" });
customers.Add(new Customer { FirstName = "Joe", LastName = "Adams" });
customers.Add(new Customer { FirstName = "Jake", LastName = "Johnson" });
customers.Add(new Customer { FirstName = "Angie", LastName = "Reckar" });
customers.Add(new Customer { FirstName = "Jean-Luc", LastName = "Beaudoir" });
return customers;
}
public static List<Customer> GetFilteredCustomers(List<Customer> customers, Func<Customer, bool> whereClause)
{
return customers
.Where(whereClause).ToList();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1779117/how-to-get-a-liststring-collection-of-values-from-app-config-in-wpf0How to get a List<string> collection of values from app.config in WPF?Edward Tanguay2009-11-22T15:59:34Z2009-11-23T10:04:31Z
<p>The following example fills the <strong>ItemsControl</strong> with a List of <strong>BackupDirectories</strong> which I get from code.</p>
<p><strong>How can I change this so that I get the same information from the app.config file?</strong></p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestReadMultipler2343.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">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="120"/>
<ColumnDefinition Width="160"/>
</Grid.ColumnDefinitions>
<TextBlock
Grid.Row="0"
Grid.Column="0"
Text="Title:"/>
<TextBlock
Grid.Row="0"
Grid.Column="1"
Text="{Binding Title}"/>
<TextBlock
Grid.Row="1"
Grid.Column="0"
Text="Backup Directories:"/>
<ItemsControl
Grid.Row="1"
Grid.Column="1"
ItemsSource="{Binding BackupDirectories}"/>
</Grid>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Collections.Generic;
using System.Windows;
using System.Configuration;
using System.ComponentModel;
namespace TestReadMultipler2343
{
public partial class Window1 : Window, INotifyPropertyChanged
{
#region ViewModelProperty: Title
private string _title;
public string Title
{
get
{
return _title;
}
set
{
_title = value;
OnPropertyChanged("Title");
}
}
#endregion
#region ViewModelProperty: BackupDirectories
private List<string> _backupDirectories = new List<string>();
public List<string> BackupDirectories
{
get
{
return _backupDirectories;
}
set
{
_backupDirectories = value;
OnPropertyChanged("BackupDirectories");
}
}
#endregion
public Window1()
{
InitializeComponent();
DataContext = this;
Title = ConfigurationManager.AppSettings.Get("title");
GetBackupDirectoriesInternal();
}
void GetBackupDirectoriesInternal()
{
BackupDirectories.Add(@"C:\test1");
BackupDirectories.Add(@"C:\test2");
BackupDirectories.Add(@"C:\test3");
BackupDirectories.Add(@"C:\test4");
}
void GetBackupDirectoriesFromConfig()
{
//BackupDirectories = ConfigurationManager.AppSettings.GetValues("backupDirectories");
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
<p><strong>app.config:</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="title" value="Backup Tool" />
<!--<add key="backupDirectories">
<add value="C:\test1"/>
<add value="C:\test2"/>
<add value="C:\test3"/>
<add value="C:\test4"/>
</add>-->
</appSettings>
</configuration>
</code></pre>
http://stackoverflow.com/questions/1778772/why-dont-ui-elements-reflect-their-state-in-button-click-event-handler0Why don't UI elements reflect their state in Button Click event handler?Edward Tanguay2009-11-22T13:57:49Z2009-11-22T18:59:58Z
<p>In the following example, how can I get:</p>
<ul>
<li>the button to be "disabled-grey" </li>
<li>the message to say "working..."</li>
</ul>
<p><strong><em>while</em></strong> the work is being done, not <strong><em>after</em></strong> the work is done?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestIsEnabled8938.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">
<StackPanel Margin="10" HorizontalAlignment="Left">
<Button x:Name="Button_Refresh"
HorizontalAlignment="Left"
DockPanel.Dock="Top"
Content="Refresh"
Click="Button_Refresh_Click"
Height="25"
Width="200"/>
<TextBlock x:Name="Message" Text="Button is ready to click."/>
</StackPanel>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Windows;
using System.Threading;
namespace TestIsEnabled8938
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void Button_Refresh_Click(object sender, RoutedEventArgs e)
{
Message.Text = "working...";
Button_Refresh.IsEnabled = false;
//do work
Thread.Sleep(2000);
Message.Text = "Button is ready to click again.";
Button_Refresh.IsEnabled = true;
}
}
}
</code></pre>
<h3>This doesn't work either:</h3>
<pre><code>Dispatcher.Invoke(new Action(() => { Message.Text = "working..."; }));
Dispatcher.Invoke(new Action(() => { Button_Refresh.IsEnabled = false; }));
</code></pre>
<h1>Answer:</h1>
<p>Thanks Heinzi, this code works:</p>
<pre><code>using System.Windows;
using System.Threading;
using System.ComponentModel;
namespace TestIsEnabled8938
{
public partial class Window1 : Window
{
BackgroundWorker backgroundWorker;
public Window1()
{
InitializeComponent();
backgroundWorker = new BackgroundWorker();
backgroundWorker.DoWork += (sender, args) =>
{
Thread.Sleep(3000);
};
backgroundWorker.RunWorkerCompleted += (sender, args) =>
{
Message.Text = "button is ready to click again";
Button_Refresh.IsEnabled = true;
};
}
private void Button_Refresh_Click(object sender, RoutedEventArgs e)
{
Message.Text = "working...";
Button_Refresh.IsEnabled = false;
backgroundWorker.RunWorkerAsync();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1776379/why-does-a-string-inotifypropertychanged-property-update-but-not-a-liststring1Why does a string INotifyPropertyChanged property update but not a List<string>?Edward Tanguay2009-11-21T18:57:32Z2009-11-21T19:05:06Z
<p>In the following WPF application, when you click the button, why does <strong>TheTitle</strong> TextBlock update but <strong>FilesCopied</strong> ListBox not update?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestList3433.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">
<StackPanel>
<TextBlock Text="{Binding TheTitle}"/>
<TextBlock Text="above"/>
<ListBox ItemsSource="{Binding FilesCopied}"/>
<TextBlock Text="below"/>
<Button Content="Add to collection" Click="Button_Click"/>
</StackPanel>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Collections.Generic;
using System.Windows;
using System.ComponentModel;
namespace TestList3433
{
public partial class Window1 : Window, INotifyPropertyChanged
{
#region ViewModelProperty: FilesCopied
private List<string> _filesCopied = new List<string>();
public List<string> FilesCopied
{
get
{
return _filesCopied;
}
set
{
_filesCopied = value;
OnPropertyChanged("FilesCopied");
}
}
#endregion
#region ViewModelProperty: TheTitle
private string _theTitle;
public string TheTitle
{
get
{
return _theTitle;
}
set
{
_theTitle = value;
OnPropertyChanged("TheTitle");
}
}
#endregion
public Window1()
{
InitializeComponent();
DataContext = this;
FilesCopied.Add("test1.txt");
TheTitle = "This is the title";
}
private void Button_Click(object sender, RoutedEventArgs e)
{
FilesCopied.Add("test2.txt");
TheTitle = "title was changed";
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
<h1>Answer:</h1>
<p>Thanks Robert, I forgot about ObservableCollection. Here is the answer:</p>
<p>Change the FilesCopied block to this:</p>
<pre><code>#region ViewModelProperty: FilesCopied
private ObservableCollection<string> _filesCopied = new ObservableCollection<string>();
public ObservableCollection<string> FilesCopied
{
get
{
return _filesCopied;
}
set
{
_filesCopied = value;
OnPropertyChanged("FilesCopied");
}
}
#endregion
</code></pre>
<p>And add:</p>
<pre><code>using System.Collections.ObjectModel;
</code></pre>
http://stackoverflow.com/questions/1775843/how-to-directly-access-the-ui-thread-from-the-backgroundworker-thread-in-wpf0How to directly access the UI thread from the BackgroundWorker thread in WPF?Edward Tanguay2009-11-21T15:52:35Z2009-11-21T16:16:07Z
<p>I'm creating a backup utility in WPF and have a <strong>general question about threading</strong>:</p>
<p>In the method <strong>backgroundWorker.DoWork()</strong>, the statement Message2.Text = "..." gives the error "<strong>The calling thread cannot access this object because a different thread owns it.</strong>".</p>
<p>Is there no way for me to directly access the UI thread within backgroundWorker.DoWork(), i.e. change text in a XAML TextBox at that point? Or do I need to store all display information in an <strong>internal variable</strong>, and then display it in <strong>backgroundWorker.ProgressChanged()</strong>, as I had to do with e.g. percentageFinished?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestCopyFiles111.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="350" Width="525">
<DockPanel LastChildFill="True" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="10">
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top">
<Button x:Name="Button_Start"
HorizontalAlignment="Left"
DockPanel.Dock="Top"
Content="Start Copying"
Click="Button_Start_Click"
Height="25"
Margin="0 0 5 0"
Width="200"/>
<Button x:Name="Button_Cancel"
HorizontalAlignment="Left"
DockPanel.Dock="Top"
Content="Cancel"
Click="Button_Cancel_Click"
Height="25"
Width="200"/>
</StackPanel>
<ProgressBar x:Name="ProgressBar"
DockPanel.Dock="Top"
HorizontalAlignment="Left"
Margin="0 10 0 0"
Height="23"
Width="405"
Minimum="0"
Maximum="100"
/>
<TextBlock DockPanel.Dock="Top" x:Name="Message" Margin="0 10 0 0"/>
<TextBlock DockPanel.Dock="Top" x:Name="CurrentFileCopying" Margin="0 10 0 0"/>
<TextBlock DockPanel.Dock="Top" x:Name="Message2" Margin="0 10 0 0"/>
</DockPanel>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Windows;
using System.ComponentModel;
using System.Threading;
using System.IO;
using System.Collections.Generic;
using System;
namespace TestCopyFiles111
{
public partial class Window1 : Window
{
private BackgroundWorker backgroundWorker;
float percentageFinished = 0;
private int totalFilesToCopy = 0;
int filesCopied = 0;
string currentPathAndFileName;
private List<CopyFileTask> copyFileTasks = new List<CopyFileTask>();
private List<string> foldersToCreate = new List<string>();
public Window1()
{
InitializeComponent();
Button_Cancel.IsEnabled = false;
Button_Start.IsEnabled = true;
ProgressBar.Visibility = Visibility.Collapsed;
}
private void Button_Start_Click(object sender, RoutedEventArgs e)
{
Button_Cancel.IsEnabled = true;
backgroundWorker = new BackgroundWorker();
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.WorkerSupportsCancellation = true;
ProgressBar.Visibility = Visibility.Visible;
AddFilesFromFolder(@"c:\test", @"C:\test2");
Message.Text = "Preparing to copy...";
MakeSureAllDirectoriesExist();
CopyAllFiles();
}
void AddFilesFromFolder(string sourceFolder, string destFolder)
{
if (!Directory.Exists(destFolder))
Directory.CreateDirectory(destFolder);
string[] files = Directory.GetFiles(sourceFolder);
foreach (string file in files)
{
string name = Path.GetFileName(file);
string dest = Path.Combine(destFolder, name);
copyFileTasks.Add(new CopyFileTask(file, dest));
totalFilesToCopy++;
}
string[] folders = Directory.GetDirectories(sourceFolder);
foreach (string folder in folders)
{
string name = Path.GetFileName(folder);
string dest = Path.Combine(destFolder, name);
foldersToCreate.Add(dest);
AddFilesFromFolder(folder, dest);
}
}
void MakeSureAllDirectoriesExist()
{
foreach (var folderToCreate in foldersToCreate)
{
if (!Directory.Exists(folderToCreate))
Directory.CreateDirectory(folderToCreate);
}
}
void CopyAllFiles()
{
backgroundWorker = new BackgroundWorker();
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.WorkerSupportsCancellation = true;
backgroundWorker.DoWork += (s, args) =>
{
filesCopied = 0;
foreach (var copyFileTask in copyFileTasks)
{
if (backgroundWorker.CancellationPending)
{
args.Cancel = true;
return;
}
DateTime sourceFileLastWriteTime = File.GetLastWriteTime(copyFileTask.SourceFile);
DateTime targetFileLastWriteTime = File.GetLastWriteTime(copyFileTask.TargetFile);
if (sourceFileLastWriteTime != targetFileLastWriteTime)
{
Message2.Text = "dates are not the same";
}
else
{
Message2.Text = "dates are the same";
}
if (!File.Exists(copyFileTask.TargetFile))
File.Copy(copyFileTask.SourceFile, copyFileTask.TargetFile);
currentPathAndFileName = copyFileTask.SourceFile;
UpdatePercentageFinished();
backgroundWorker.ReportProgress((int)percentageFinished);
filesCopied++;
}
};
backgroundWorker.ProgressChanged += (s, args) =>
{
percentageFinished = args.ProgressPercentage;
ProgressBar.Value = percentageFinished;
Message.Text = percentageFinished + "% finished";
CurrentFileCopying.Text = currentPathAndFileName;
};
backgroundWorker.RunWorkerCompleted += (s, args) =>
{
Button_Start.IsEnabled = true;
Button_Cancel.IsEnabled = false;
ProgressBar.Value = 0;
UpdatePercentageFinished();
CurrentFileCopying.Text = "";
if (percentageFinished < 100)
{
Message.Text = String.Format("cancelled at {0:0}% finished", percentageFinished);
}
else
{
Message.Text = "All files copied.";
}
};
backgroundWorker.RunWorkerAsync();
}
void UpdatePercentageFinished()
{
percentageFinished = (filesCopied / (float)totalFilesToCopy) * 100f;
}
class CopyFileTask
{
public string SourceFile { get; set; }
public string TargetFile { get; set; }
public CopyFileTask(string sourceFile, string targetFile)
{
SourceFile = sourceFile;
TargetFile = targetFile;
}
}
private void Button_Cancel_Click(object sender, RoutedEventArgs e)
{
backgroundWorker.CancelAsync();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1198936/how-can-i-create-a-file-with-streamwriter-using-a-relative-path0How can I create a file with StreamWriter using a relative path?Edward Tanguay2009-07-29T09:05:23Z2009-11-21T16:00:03Z
<p>When I run the following code, an XML file is <strong>correctly created</strong> in <code>c:\temp</code>:</p>
<pre><code>XmlSerializer xs = new XmlSerializer(typeof(ObservableCollection<Models.Customer>));
using (StreamWriter wr = new StreamWriter("C:/temp/CustomerMock2.xml"))
{
xs.Serialize(wr, CustomerList);
}
</code></pre>
<p><strong>However</strong>, I actually want it to be created in a <strong>sub-directory</strong> underneath the project, but when I do this:</p>
<pre><code>using (StreamWriter wr = new StreamWriter("Data/CustomerMock2.xml"))
</code></pre>
<p>it just acts as if it writes it but the file <strong>never appears</strong> in that directory:</p>
<p><code>C:\Projects\Prototype12\CustomersModul\bin\Debug\Data</code>. </p>
<p><strong>How can I create a file with StreamWriter with a relative path inside my project?</strong></p>
http://stackoverflow.com/questions/1187673/how-to-assign-a-dynamic-imagebrush-resource-to-a-stackpanels-background-in-code0How to assign a dynamic imagebrush resource to a stackpanel's background in code?Edward Tanguay2009-07-27T11:35:36Z2009-11-20T18:00:02Z
<p>I currently define the background for a user control like this:</p>
<pre><code><UserControl.Background>
<ImageBrush ImageSource="{DynamicResource LeftMenuBackgroundImage}" />
</UserControl.Background>
</code></pre>
<p>How can I move this to code-behind, e.g.:</p>
<p><em>PSEUDO-CODE:</em></p>
<pre><code>StackPanel sp = new StackPanel();
sp.Background = new ImageBrush(DynamicResource.GetResourceName("LeftMenuBackgroundImage"));
</code></pre>
http://stackoverflow.com/questions/1763317/how-to-advance-a-progress-bar-from-a-recursive-method-while-avoiding-threading-is0How to advance a progress bar from a recursive method while avoiding threading issues?Edward Tanguay2009-11-19T13:31:39Z2009-11-19T16:26:58Z
<p>I made <a href="http://tanguay.info/web/index.php?pg=codeExamples&id=232" rel="nofollow">this code example</a> which successfully uses a BackgroundWorker to advance a progress bar in a for loop.</p>
<p>Now I'm trying to adapt it to work with the following recursive file copy method so that it shows me how far along the copying is, but the following code is giving me the error "<strong>This BackgroundWorker is currently busy and cannot run multiple tasks concurrently</strong>." </p>
<p>What do I need to change so that this recursive method does not get these threading issues?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<DockPanel LastChildFill="True" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="10">
<TextBlock DockPanel.Dock="Top" Text="{Binding PageTitle}" Style="{DynamicResource PageTitleStyle}"/>
<TextBlock DockPanel.Dock="Top" Text="{Binding PageDescription}" Style="{DynamicResource PageDescriptionStyle}"/>
<Button x:Name="Button_Start" HorizontalAlignment="Left" DockPanel.Dock="Top" Content="Start Task" Click="Button_Start_Click" Height="25" Width="200"/>
<ProgressBar x:Name="ProgressBar"
HorizontalAlignment="Left"
Margin="0 10 0 0"
Height="23"
Width="500"
Minimum="0"
Maximum="100"
/>
</DockPanel>
</Window>
</code></pre>
<p><strong>code-behind:</strong></p>
<pre><code>using System.Windows;
using System.ComponentModel;
using System.Threading;
using System.IO;
namespace WpfApplication1
{
public partial class MainWindow : Window
{
private BackgroundWorker backgroundWorker;
int thread1percentageFinished = 0;
private int totalFilesToCopy;
private int numberOfFilesCopied;
public MainWindow()
{
InitializeComponent();
ProgressBar.Visibility = Visibility.Collapsed;
}
private void Button_Start_Click(object sender, RoutedEventArgs e)
{
int totalFilesToCopy = 1000;
int numberOfFilesCopied = 0;
backgroundWorker = new BackgroundWorker();
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.WorkerSupportsCancellation = true;
ProgressBar.Visibility = Visibility.Visible;
CopyFolder(@"C:\test", @"C:\test2");
}
void CopyFolder(string sourceFolder, string destFolder)
{
backgroundWorker.DoWork += (s, args) =>
{
BackgroundWorker worker = s as BackgroundWorker;
if (!Directory.Exists(destFolder))
Directory.CreateDirectory(destFolder);
string[] files = Directory.GetFiles(sourceFolder);
foreach (string file in files)
{
string name = Path.GetFileName(file);
string dest = Path.Combine(destFolder, name);
File.Copy(file, dest, true);
numberOfFilesCopied++;
float percentageDone = (numberOfFilesCopied / (float)totalFilesToCopy) * 100f;
worker.ReportProgress((int)percentageDone);
}
string[] folders = Directory.GetDirectories(sourceFolder);
foreach (string folder in folders)
{
string name = Path.GetFileName(folder);
string dest = Path.Combine(destFolder, name);
CopyFolder(folder, dest);
}
};
backgroundWorker.ProgressChanged += (s, args) =>
{
thread1percentageFinished = args.ProgressPercentage;
ProgressBar.Value = thread1percentageFinished;
};
backgroundWorker.RunWorkerCompleted += (s, args) =>
{
Button_Start.IsEnabled = true;
ProgressBar.Visibility = Visibility.Collapsed;
ProgressBar.Value = 0;
};
backgroundWorker.RunWorkerAsync();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1747282/how-to-make-visual-studio-editor-stop-scrolling-past-bottom-of-a-file1How to make Visual Studio editor stop scrolling past bottom of a file?Edward Tanguay2009-11-17T08:05:02Z2009-11-18T15:53:55Z
<p>In the Visual Studio <strong>editor</strong> when you pull the <strong>scroll bar</strong> down to the bottom of the file, all you see is a <strong>blank page</strong>, since the text has scrolled up past the <strong>top</strong> of the text editor window. This makes scrolling to the bottom <strong>difficult</strong> because you can't just pull the scroll bar quickly all the way down but have to <em>carefully</em> position the cursor so you can still see your code.</p>
<p><strong>How can I make it so that, as in NotePad, when I pull the scroll bar down to the bottom of the file, I see the bottom of the file?</strong></p>
http://stackoverflow.com/questions/1743432/how-can-i-automatically-add-existing-items-to-a-visual-studio-project1How can I automatically add existing items to a Visual Studio project?Edward Tanguay2009-11-16T16:57:56Z2009-11-18T14:05:48Z
<p>I have a tool which <strong>dynamically</strong> <strong>generates</strong> .xaml and .xaml.cs files and puts them in the appropriate Visual Studio <strong>directory</strong>. </p>
<p>To <strong>add</strong> them to the project, I have to then:</p>
<ul>
<li>right-click on that directory</li>
<li>choose "add existing item"</li>
<li>navigate to the matching directory on the hard drive</li>
<li>select the two files that were created</li>
<li>click ok</li>
</ul>
<p><strong>Is there a way for me to tell the project to "include all existing items under the project folder on the hard drive"?</strong></p>
http://stackoverflow.com/questions/1755231/how-can-i-get-the-text-value-of-a-textbox-whose-name-gets-assigned-at-runtime2How can I get the Text value of a TextBox whose Name gets assigned at runtime?Edward Tanguay2009-11-18T10:59:25Z2009-11-18T12:36:29Z
<p>I am creating a <strong>TextBox</strong> with the following code:</p>
<pre><code>TextBox textBox = new TextBox();
textBox.Name = propertyName;
textBox.Text = value;
textBox.Width = FormControlColumnWidth;
textBox.SetResourceReference(Control.StyleProperty, "FormTextBoxStyle");
sp.Children.Add(textBox); //StackPanel
FormBase.Children.Add(sp);
</code></pre>
<p>On a <strong>button click</strong>, I want to get the text value of that text box, but I can't specify in code:</p>
<pre><code>string firstName = FirstName.Text;
</code></pre>
<p>since "FirstName" will be defined at runtime. So <strong>how do I get the text value of the Textbox without knowing the name of the textbox at compile time?</strong></p>
<p>The following is what I have so far but it says that it can't find "FirstName" even though it gets defined at runtime:</p>
<pre><code>private void Button_Save(object sender, RoutedEventArgs e)
{
using (var db = Datasource.GetContext())
{
var item = (from i in db.Customers
where i.Id == TheId
select i).SingleOrDefault();
item.FirstName = ((TextBox)FindResource("FirstName")).Text;
db.SubmitChanges();
}
}
</code></pre>
<p><h1>REPRODUCABLE EXAMPLE:</H1></p>
<p>I posted a full reproducable example of this problem here: <a href="http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname">http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname</a>, perhaps easier to analyze.</p>
http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname1Why can't I access a TextBox by Name with FindName()?Edward Tanguay2009-11-18T11:29:12Z2009-11-18T12:29:48Z
<p>Why does <strong>FindName()</strong> return <strong>null</strong> in the following example?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestDynamicTextBox343.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">
<StackPanel>
<Border >
<DockPanel x:Name="FormBase" LastChildFill="True">
</DockPanel>
</Border>
<Button Content="Save" Click="Button_Click"/>
</StackPanel>
</Window>
</code></pre>
<p><strong>Code Behind:</strong></p>
<pre><code>using System;
using System.Windows;
using System.Windows.Controls;
namespace TestDynamicTextBox343
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
StackPanel sp = new StackPanel();
sp.Orientation = Orientation.Horizontal;
TextBlock textBlock = new TextBlock();
textBlock.Text = "First Name: ";
TextBox textBox = new TextBox();
textBox.Name = "FirstName";
textBox.Text = "test";
sp.Children.Add(textBlock);
sp.Children.Add(textBox);
FormBase.Children.Add(sp);
}
private void Button_Click(object sender, RoutedEventArgs e)
{
TextBox tb = (TextBox)this.FindName("FirstName");
Console.WriteLine(tb.Text);
}
}
}
</code></pre>
<h1>Addendum to Answer:</h1>
<p>Thanks a lot, Bruno, that worked well. In order not to add the same name twice, I wrap it with this:</p>
<pre><code>void RegisterTextBox(string textBoxName, TextBox textBox)
{
if ((TextBox)this.FindName(textBoxName) != null)
this.UnregisterName(textBoxName);
this.RegisterName(textBoxName, textBox);
}
</code></pre>
<p>Or if you will be registering anything other than TextBoxes, a generic version:</p>
<pre><code>void RegisterControl<T>(string textBoxName, T textBox)
{
if ((T)this.FindName(textBoxName) != null)
this.UnregisterName(textBoxName);
this.RegisterName(textBoxName, textBox);
}
</code></pre>
http://stackoverflow.com/questions/1755231/how-can-i-get-the-text-value-of-a-textbox-whose-name-gets-assigned-at-runtime/1755630#17556302Answer by Edward Tanguay for How can I get the Text value of a TextBox whose Name gets assigned at runtime?Edward Tanguay2009-11-18T12:25:21Z2009-11-18T12:25:21Z<p>The answer to this question is you have to use <code>this.RegisterName("FirstName", textBox);</code> which is explained here: <a href="http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname">http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname</a></p>
http://stackoverflow.com/questions/1754615/how-to-assign-a-dynamic-resource-style-in-code0How to assign a dynamic resource style in code?Edward Tanguay2009-11-18T09:04:13Z2009-11-18T09:13:28Z
<p>I want to produce in code the equivalent of this in XAML:</p>
<pre><code><TextBlock
Text="Title:"
Width="{Binding FormLabelColumnWidth}"
Style="{DynamicResource FormLabelStyle}"/>
</code></pre>
<p>I can do the text and the width, but how do I assign the dynamic resource to the style:</p>
<pre><code>TextBlock tb = new TextBlock();
tb.Text = "Title:";
tb.Width = FormLabelColumnWidth;
tb.Style = ???
</code></pre>
http://stackoverflow.com/questions/442948/why-is-visual-studio-2008-slow-with-firefox0Why is Visual Studio 2008 slow with Firefox?Edward Tanguay2009-01-14T13:33:31Z2009-11-18T09:09:04Z
<ul>
<li>I am using Microsoft Visual Web Developer 2008 Express.</li>
<li>I've made an ASP.NET MVC site which has 6 CSS files and 6 Javascript files in the HEAD element in the Site.Master file.</li>
<li>When I do F5 or CTRL-F5 in Explorer or Opera, the site displays instantly.</li>
<li>When I run my site in Firefox, it takes a SECOND for each CSS and each Javascript file on LOCALHOST, i.e. 12 seconds to load on localhost.</li>
</ul>
<p>What might I be able to change in the Firefox settings so it is as fast as Opera and Explorer?</p>
<p>NEW INFO:
Uninstalled Firebug completely, no yslow, no other add-ons. When I take out the CSS and Javascript files, then Firefox is as fast as the other browsers. What could be taking it so long on a local connection?</p>
http://stackoverflow.com/questions/1608036/how-have-you-combined-the-advantages-of-the-direct-view-to-model-approach-and-mvv2How have you combined the advantages of the direct View-to-Model approach and MVVM in your WPF projects?Edward Tanguay2009-10-22T15:29:16Z2009-11-18T02:58:23Z
<p>In our application we have many <strong>Model</strong> objects that have <strong>hundreds</strong> of properties.</p>
<p>For every property on the <strong>model</strong>:</p>
<pre><code>public string SubscriptionKind { get; set; }
...100x...
</code></pre>
<p>we had to make an INotifyPropertyChanged-enabled property on the <strong>ViewModel</strong>:</p>
<pre><code>#region ViewModelProperty: SubscriptionKind
private int _subscriptionKind;
public int SubscriptionKind
{
get
{
return _subscriptionKind;
}
set
{
_subscriptionKind = value;
OnPropertyChanged("SubscriptionKind");
}
}
#endregion
...100x...
</code></pre>
<p>which meant that when our <strong>View</strong> sent the <strong>Save</strong> event, we had to remap all these values of the view model back into the model:</p>
<pre><code>customer.SubscriptionKind = this.SubscriptionKind
...100x...
</code></pre>
<p>This became <strong>tedious</strong> and time-consuming as the models kept changing and we had to map all changes up into the ViewModels.</p>
<p>After awhile we realized that it would be more straight-forward to just <strong>connect the DataContext of the View directly</strong> to the Model which enables us to bind the XAML elements directly to the Model object properties so that the save event would simply save the object without any mapping whatsoever.</p>
<p>What we <strong>lost</strong> in this move is:</p>
<ul>
<li><p>the ability via <code>UpdateSourceTrigger=PropertyChanged</code> to do fine-grained <strong>validation</strong> and manipulation in the ViewModel Property Setters, which I really liked: this we don't have anymore since any change in XAML simple changes the dumb property on the Model</p></li>
<li><p>the ability (in the future) to create <strong>mock views</strong> which test our viewmodel's UI logic in a novel way, e.g. "if property SubscriptionKind is set to "Yearly" then (1) change discount to 10%, (2) run "congratulations animation", and (3) make order button more prominent.</p></li>
</ul>
<p><strong>Both</strong> of these approaches have <strong>obvious advantages</strong>, e.g. the first way "View-direct-to-Model" approach especially when combined with <strong>LINQ-to-SQL</strong> is pragmatic and enables you to produce useful software fast, and as long as you use <code>{Binding...}</code> instead of <code>x:Name</code> you still have the ability to "hand off your views to a Blend Designer".</p>
<p>On the other hand, although MVVM requires you to maintain tedious mapping of Model to ViewModel, it gives you powerful <strong>validation</strong> and <strong>testing</strong> advantages that the first approach doesn't have.</p>
<p><strong>How have you been able to combine the advantages of these two approaches in your projects?</strong></p>
http://stackoverflow.com/questions/1805152/why-does-linq-to-sql-not-create-singular-class-for-table-named-applicationmenusComment by Edward Tanguay on Why does LINQ-to-SQL not create singular class for table named "ApplicationMenus"?Edward Tanguay2009-11-26T19:01:10Z2009-11-26T19:01:10ZI can understand it might have a problem with difficult words such as "Campuses" etc. (although a simple little mapping table would take care of that), but the odd thing is that it works with "Menus" but not "ApplicationMenus". http://stackoverflow.com/questions/1803422/what-is-the-best-way-to-reuse-blocks-of-xaml/1804368#1804368Comment by Edward Tanguay on What is the best way to reuse blocks of XAML?Edward Tanguay2009-11-26T16:58:41Z2009-11-26T16:58:41ZWhen I do this it tells me: "'ResourceDictionary' root element requires a x:Class attribute to support event handlers in the XAML file. Either remove the event handler for the MouseDown event, or add a x:Class attribute to the root element." when I add the x:Class attribute, I get errors like this: "Missing partial modifier on declaration of type 'TestApp.Pages.BasePageManageItems'; another partial declaration of this type exists"http://stackoverflow.com/questions/1803712/is-it-possible-to-use-xamlreader-from-a-xaml-file-to-load-in-a-block-of-xaml-text/1804289#1804289Comment by Edward Tanguay on Is it possible to use XamlReader from a XAML file to load in a block of XAML text?Edward Tanguay2009-11-26T16:57:25Z2009-11-26T16:57:25ZWhen I do this it tells me: "'ResourceDictionary' root element requires a x:Class attribute to support event handlers in the XAML file. Either remove the event handler for the MouseDown event, or add a x:Class attribute to the root element." when I add the x:Class attribute, I get errors like this: "Missing partial modifier on declaration of type 'TestApp.Pages.BasePageManageItems'; another partial declaration of this type exists"http://stackoverflow.com/questions/1783771/where-do-you-put-global-variables-in-a-wpf-application/1783998#1783998Comment by Edward Tanguay on Where do you put global variables in a WPF application?Edward Tanguay2009-11-24T10:07:10Z2009-11-24T10:07:10Zthanks for the clear thinking, I deleted my Output object and put e.g. ReturnToPageIdCode into a PageManager object that I was injecting into every page anyway, makes sensehttp://stackoverflow.com/questions/1757339/how-can-i-programatically-create-a-wpf-toolkit-datagridtemplatecolumn/1775681#1775681Comment by Edward Tanguay on How can I programatically create a WPF Toolkit DataGridTemplateColumn?Edward Tanguay2009-11-23T13:25:51Z2009-11-23T13:25:51Zgood idea, worked excellently, and produces much cleaner code, thanks!http://stackoverflow.com/questions/1782348/how-to-process-multiple-where-clauses-in-a-linq-statement/1782367#1782367Comment by Edward Tanguay on How to process multiple where clauses in a LINQ statement?Edward Tanguay2009-11-23T10:53:36Z2009-11-23T10:53:36ZExcellent, works perfectly.http://stackoverflow.com/questions/1782079/how-can-i-send-where-statements-to-a-method-which-are-dynamically-executed-in-a-l/1782113#1782113Comment by Edward Tanguay on How can I send where statements to a method which are dynamically executed in a LINQ statement?Edward Tanguay2009-11-23T10:25:04Z2009-11-23T10:25:04ZThanks, I used this idea to get my example to work, however, I had to drop the Expression<> to get it to work (code posted above).http://stackoverflow.com/questions/1778772/why-dont-ui-elements-reflect-their-state-in-button-click-event-handler/1778968#1778968Comment by Edward Tanguay on Why don't UI elements reflect their state in Button Click event handler?Edward Tanguay2009-11-22T15:31:33Z2009-11-22T15:31:33Z+1 also works, useful, thanks!http://stackoverflow.com/questions/1778772/why-dont-ui-elements-reflect-their-state-in-button-click-event-handler/1778790#1778790Comment by Edward Tanguay on Why don't UI elements reflect their state in Button Click event handler?Edward Tanguay2009-11-22T14:12:33Z2009-11-22T14:12:33ZRight, I've been trying various Invoke commands but none are working, the one above with Dispatcher compiles but doesn't refresh the UI. Otehrwise I get: System.Windows.Controls.Button' does not contain a definition for 'Invoke' and no extension method 'Invoke' accepting a first argument of type 'System.Windows.Controls.Button' could be found.http://stackoverflow.com/questions/1775843/how-to-directly-access-the-ui-thread-from-the-backgroundworker-thread-in-wpf/1775910#1775910Comment by Edward Tanguay on How to directly access the UI thread from the BackgroundWorker thread in WPF?Edward Tanguay2009-11-21T16:58:34Z2009-11-21T16:58:34Zseems to work perfectly thankshttp://stackoverflow.com/questions/1775843/how-to-directly-access-the-ui-thread-from-the-backgroundworker-thread-in-wpf/1775861#1775861Comment by Edward Tanguay on How to directly access the UI thread from the BackgroundWorker thread in WPF?Edward Tanguay2009-11-21T16:03:43Z2009-11-21T16:03:43Zno it just seemed redundant to copy "state of copying" to variable, then variable to XAML element, thought there might be a way to copy "state of copying" to XAML element directlyhttp://stackoverflow.com/questions/1743432/how-can-i-automatically-add-existing-items-to-a-visual-studio-project/1756240#1756240Comment by Edward Tanguay on How can I automatically add existing items to a Visual Studio project?Edward Tanguay2009-11-18T16:11:24Z2009-11-18T16:11:24Zthat's much easier, I had forgotten about that, thankshttp://stackoverflow.com/questions/1755231/how-can-i-get-the-text-value-of-a-textbox-whose-name-gets-assigned-at-runtime/1755297#1755297Comment by Edward Tanguay on How can I get the Text value of a TextBox whose Name gets assigned at runtime?Edward Tanguay2009-11-18T11:29:38Z2009-11-18T11:29:38ZI posted a full example showing this here: <a href="http://stackoverflow.com/questions/1755377/why-cant-i-access-a-textbox-by-name-with-findname" rel="nofollow" title="why cant i access a textbox by name with findname">stackoverflow.com/questions/1755377/…</a>http://stackoverflow.com/questions/1755231/how-can-i-get-the-text-value-of-a-textbox-whose-name-gets-assigned-at-runtime/1755297#1755297Comment by Edward Tanguay on How can I get the Text value of a TextBox whose Name gets assigned at runtime?Edward Tanguay2009-11-18T11:23:19Z2009-11-18T11:23:19Zthis gives me c=null, although it works if I put <TextBox Name="FirstName" Text="testing"/> in the XAML.http://stackoverflow.com/questions/1755231/how-can-i-get-the-text-value-of-a-textbox-whose-name-gets-assigned-at-runtime/1755267#1755267Comment by Edward Tanguay on How can I get the Text value of a TextBox whose Name gets assigned at runtime?Edward Tanguay2009-11-18T11:12:17Z2009-11-18T11:12:17ZI tried this, it tells me: System.Windows.Controls.Control' does not contain a definition for 'Controls' and no extension method 'Controls' accepting a first argument of type 'System.Windows.Controls.Control' could be found. I can't find Children under control either. I'm referencing System.Windows.Controls;