User bendewey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T04:14:20Zhttp://stackoverflow.com/feeds/user/37881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/679942/can-flash-or-silverlight-be-used-for-kiosk-applications-how/680008#6800081Answer by bendewey for Can Flash or Silverlight be used for kiosk applications? How?bendewey2009-03-25T02:23:02Z2009-11-26T13:19:13Z<p>Silverlight 3 and greater have a feature called <a href="http://silverlight.net/getstarted/silverlight3/default.aspx#whatsnew" rel="nofollow">Out of Browser</a> which may suit your needs.</p>
http://stackoverflow.com/questions/390286/generic-parse-method-without-boxing0Generic Parse Method without Boxingbendewey2008-12-23T22:47:03Z2009-11-16T17:27:17Z
<p>I am trying to write a generic Parse method that converts and returns a strongly typed value from a NamedValueCollection. I tried two methods but both of these methods are going through boxing and unboxing to get the value. Does anyone know a way to avoid the boxing? If you saw this in production would you not like it, how bad is it for performance?</p>
<p>Usuage:</p>
<pre><code>var id = Request.QueryString.Parse<int>("id");
</code></pre>
<p>Attempt #1:</p>
<pre><code>public static T Parse<T>(this NameValueCollection col, string key)
{
string value = col[key];
if (string.IsNullOrEmpty(value))
return default(T);
if (typeof(T) == typeof(int))
{
//return int.Parse(value); // cannot convert int to T
//return (T)int.Parse(value); // cannot convert int to T
return (T)(object)int.Parse(value); // works but boxes
}
if (typeof(T) == typeof(long))
{
return (T)(object)long.Parse(value); // works but boxes
}
...
return default(T);
}
</code></pre>
<p>Attempt #2 (using reflection):</p>
<pre><code>public static T Parse<T>(this NameValueCollection col, string key)
{
string value = col[key];
if (string.IsNullOrEmpty(value))
return default(T);
try
{
var parseMethod = typeof(T).GetMethod("Parse", new Type[] { typeof(string) });
if (parseMethod == null)
return default(T);
// still boxing because invoke returns an object
var parsedVal = parseMethod.Invoke(null, new object[] { value });
return (T)parsedVal;
}
// No Proper Parse Method found
catch(AmbiguousMatchException)
{
}
return default(T);
}
</code></pre>
http://stackoverflow.com/questions/1705184/why-is-my-jquery-plugin-for-removing-text-on-focus-and-re-adding-it-on-blur-not-w/1705214#17052140Answer by bendewey for Why is my jQuery plugin for removing text on focus and re-adding it on blur not working?bendewey2009-11-10T02:01:57Z2009-11-10T02:13:45Z<p>You'll want to write your plugin seperate from your code implementation.</p>
<p>Your plugin would look something like this:</p>
<pre><code> (function($) {
$.fn.watermark = function() {
return this.each(function() {
var obj = $(this);
var initialText = obj.val();
obj.focus(function () {
if(obj.val() === initialText)
obj.val("");
});
obj.blur(function () {
if(obj.val() ==="")
obj.val(initialText);
});
});
};
})(jQuery);
</code></pre>
<p>Then to use your plugin:</p>
<pre><code>$(document).ready(function() {
$('.watermark').watermark();
});
</code></pre>
<p>Additionally as tvanfosson you'll want to include the <code>var</code> keyword on your <code>obj</code>. If you don't have the <code>var</code> keyword on your <code>obj</code> declaration only the last textbox will have the watermark effect.</p>
http://stackoverflow.com/questions/327996/http-post-xml-to-rest-singleton-service-throws-notsupportedexception0HTTP POST XML to REST Singleton Service throws NotSupportedExceptionbendewey2008-11-29T20:51:37Z2009-11-02T21:00:02Z
<p>I have the following REST Host in a silverlight application. I'm getting a NotSupportedException on the EndGetResponse() call of the Save Method. In this sample I'm using the default config for a REST Singleton Service from the WCF REST Starter Kit, with the exception of some changes to the OnAddItem method to accept updates via a POST (since silverlight PUT isn't supported). I'm getting a StatusCode 200 when I make a post from Fiddler. The Service is hosted on the same site as the SilverlightPage, so I don't have any x-domain policy stuff setup. Am I missing something obvious?</p>
<p>The Load methods work fine.</p>
<pre><code>namespace SilverlightApplication2
{
public class Customer
{
public string Name { get; set; }
}
public class RestHost
{
public event EventHandler Loaded = delegate { };
public event EventHandler Error = delegate { };
public Customer Customer { get; set; }
public string ErrorMessage { get; set; }
public RestHost()
{
Customer = new Customer();
Load();
}
private void Load()
{
// begin loading customer
var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/"));
request.BeginGetResponse(delegate(IAsyncResult result)
{
try
{
var resp = request.EndGetResponse(result);
var doc = XDocument.Load(resp.GetResponseStream());
Customer.Name = doc.Element("SampleItem").Element("Value").Value;
Loaded(this, EventArgs.Empty);
}
catch (Exception ex)
{
ErrorMessage = ex.GetBaseException().Message;
Error(this, EventArgs.Empty);
}
}, null);
}
public void Save()
{
var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/"));
request.Method = "POST";
request.ContentType = "application/xml";
request.BeginGetRequestStream(delegate(IAsyncResult result)
{
var postDoc = new XDocument(
new XElement("SampleItem", new XAttribute(XNamespace.Xmlns + "i", "http://www.w3.org/2001/XMLSchema-instance"),
new XElement("Value", Customer.Name)
)
);
postDoc.Save(request.EndGetRequestStream(result));
request.BeginGetResponse(delegate(IAsyncResult result2)
{
try
{
var resp = request.EndGetResponse(result2); // NotSupportedExecption here
var doc = XDocument.Load(resp.GetResponseStream());
Customer.Name = doc.Element("SampleItem").Element("Value").Value;
Loaded(this, EventArgs.Empty);
}
catch (Exception ex)
{
ErrorMessage = ex.GetBaseException().Message;
Error(this, EventArgs.Empty);
}
}, null);
}, null);
}
}
}
</code></pre>
<p>Also here is the Page Code as well</p>
<pre><code><UserControl x:Class="SilverlightApplication2.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel Width="100" HorizontalAlignment="Left" Margin="15">
<TextBlock>Customer</TextBlock>
<TextBox x:Name="CustomerName" />
<TextBlock Foreground="LightGray" x:Name="LoadingLabel" Margin="5,-19,0,0">Loading ...</TextBlock>
<Button Content="Save" Margin="0,5,0,0" Click="Button_Click" />
</StackPanel>
</Grid>
</UserControl>
</code></pre>
<p>Code-Behind</p>
<pre><code>namespace SilverlightApplication2
{
public partial class Page : UserControl
{
private RestHost _host;
public Page()
{
InitializeComponent();
_host = new RestHost();
_host.Loaded += delegate
{
this.Dispatcher.BeginInvoke(delegate
{
this.LoadingLabel.Visibility = Visibility.Collapsed;
this.CustomerName.Text = _host.Customer.Name;
});
};
_host.Error += delegate
{
this.Dispatcher.BeginInvoke(delegate
{
HtmlPage.Window.Alert(_host.ErrorMessage);
});
};
}
private void Button_Click(object sender, RoutedEventArgs e)
{
_host.Customer.Name = this.CustomerName.Text;
_host.Save();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1661395/how-do-i-show-something-after-mouseover-longer-than-1-second-with-jquery-qtip/1661459#16614590Answer by bendewey for How do I show something after mouseover longer than 1 second with jQuery QTipbendewey2009-11-02T13:55:10Z2009-11-02T13:55:10Z<p>Set the <a href="http://craigsworks.com/projects/qtip/docs/reference/#show" rel="nofollow"><code>show.delay</code></a> property on the qTip plugin.</p>
<pre><code>$(function() {
$('#myDiv').qtip({
content: 'My tooltip',
show: { delay: 1000 }
});
});
</code></pre>
http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jquery/1659465#16594651Answer by bendewey for Loading HTML content containing inline script via jQuerybendewey2009-11-02T04:54:55Z2009-11-02T04:54:55Z<p>There is an issue when you use document.write. If you have the ability to modify the source pages you can modify them to use the innerHtml technique instead.</p>
<p>To do so you would change something like this:</p>
<pre><code><div id="testDiv">
<script type="text/javascript">
document.write("<img src='image1.jpg' alt='' />");
</script>
</div>
</code></pre>
<p>To this:</p>
<pre><code><div id="testDiv">
<div>
<script type="text/javascript">
document.getElementByid('testDiv').innerHTML = "<img src='image1.jpg' alt='' />";
</script>
</code></pre>
http://stackoverflow.com/questions/1659157/wpf-listbox-display-properties-of-the-itemsource/1659171#16591711Answer by bendewey for WPF ListBox - Display properties of the ItemSourcebendewey2009-11-02T02:28:17Z2009-11-02T02:28:17Z<p>You can set a <code>DataTemplate</code> on the <code>ItemTemplate</code> property of the <code>ListBox</code>:</p>
<pre><code><ListBox ItemSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate DataType="tfs:WorkItem">
<StackPanel>
<TextBlock Text="{Binding Title}" />
<!-- Others -->
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</code></pre>
http://stackoverflow.com/questions/1540931/jquery-call-to-javascript-function-inside-live-never-occurs/1540968#15409680Answer by bendewey for jquery call to javascript function inside LIVE Never occursbendewey2009-10-08T22:54:57Z2009-10-08T22:54:57Z<p>There seems to be a syntax error in your function callback remove the word <code>delete</code></p>
<pre><code> $('#trash{$roleId}').live('click',function(e) {
e.preventDefault();
alert('trash clicked');
// ...
return false;
});
</code></pre>
http://stackoverflow.com/questions/1540808/how-can-i-know-a-row-index-while-iterating-with-foreach/1540820#15408200Answer by bendewey for How can I know a row index while iterating with foreach?bendewey2009-10-08T22:17:09Z2009-10-08T22:17:09Z<p>You can use the standard <code>for</code> loop to get the index</p>
<pre><code>for(int i=0; i<temptable.Rows.Count; i++)
{
var index = i;
var row = temptable.Rows[i];
}
</code></pre>
http://stackoverflow.com/questions/1540658/net-asynchronous-stream-read-write/1540799#15407991Answer by bendewey for .NET Asynchronous stream read/writebendewey2009-10-08T22:12:05Z2009-10-08T22:12:05Z<p>You are going to need to use the callback from the NetStream read to handle this. And frankly it might be easier to wrap the copying logic into its own class so that you can maintain the instance of the active Streams. </p>
<p>This is how I'd approach it (not tested):</p>
<pre><code>public class Assignment1
{
public static void NetToFile(NetworkStream net, FileStream file)
{
var copier = new AsyncStreamCopier(net, file);
copier.Start();
}
public static void NetToFile_Option2(NetworkStream net, FileStream file)
{
var completedEvent = new ManualResetEvent(false);
// copy as usual but listen for completion
var copier = new AsyncStreamCopier(net, file);
copier.Completed += (s, e) => completedEvent.Set();
copier.Start();
completedEvent.WaitOne();
}
/// <summary>
/// The Async Copier class reads the input Stream Async and writes Synchronously
/// </summary>
public class AsyncStreamCopier
{
public event EventHandler Completed;
private readonly Stream input;
private readonly Stream output;
private byte[] buffer = new byte[4096];
public AsyncStreamCopier(Stream input, Stream output)
{
this.input = input;
this.output = output;
}
public void Start()
{
GetNextChunk();
}
private void GetNextChunk()
{
input.BeginRead(buffer, 0, buffer.Length, InputReadComplete, null);
}
private void InputReadComplete(IAsyncResult ar)
{
// input read asynchronously completed
int bytesRead = input.EndRead(ar);
if (bytesRead == 0)
{
RaiseCompleted();
return;
}
// write synchronously
output.Write(buffer, 0, bytesRead);
// get next
GetNextChunk();
}
private void RaiseCompleted()
{
if (Completed != null)
{
Completed(this, EventArgs.Empty);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1540183/how-can-i-build-a-string-from-a-collection-with-linq/1540249#15402491Answer by bendewey for How can I build a string from a collection with Linq?bendewey2009-10-08T20:32:03Z2009-10-08T20:38:47Z<p>I created these extension methods that can be used to concatenate any number of items in a collection. It may be a bit overkill for you example, but if you need to concatenate items that are objects and not strings it can work great.</p>
<h2>Usage:</h2>
<pre><code>fileContent = field.Values.Contatenate(Environment.NewLine);
</code></pre>
<h2>Extensions:</h2>
<pre><code>public static class EnumerableExtensions
{
public static string Concatenate<T>(this IEnumerable<T> source, string seperator)
{
return Concatenate(source, i => i.ToString(), seperator);
}
public static string Concatenate<T>(this IEnumerable<T> source, Func<T, string> selector, string seperator)
{
var builder = new StringBuilder();
foreach (var item in source)
{
if (builder.Length > 0)
builder.Append(seperator);
builder.Append(selector(item));
}
return builder.ToString();
}
public static string ToCsv<T>(this IEnumerable<T> source)
{
return Concatenate(source, i => i.ToString(), ",");
}
public static string ToCsv<T>(this IEnumerable<T> source, Func<T, string> selector)
{
return Concatenate(source, selector, ",");
}
}
</code></pre>
http://stackoverflow.com/questions/1539929/a-good-aproach-to-events-in-mvvm/1539993#15399930Answer by bendewey for A good aproach to events in MVVMbendewey2009-10-08T19:43:09Z2009-10-08T19:43:09Z<p>Silverlight doesn't contain a Command button like the Button in WPF. The way we get around it there is to create a custom control that contains a command and maps that event to the command. Something like this should work.</p>
<pre><code>public class CommandListBoxItem : ListBoxItem
{
public CommandListBoxItem()
{
DoubleClick += (sender, e) =>
{
if (Command != null && Command.CanExecute(CommandParameter))
Command.Execute(CommandParameter);
};
}
#region Bindable Command Properties
public static DependencyProperty DoubleClickCommandProperty =
DependencyProperty.Register("DoubleClickCommand",
typeof(ICommand), typeof(CommandListBoxItem),
new PropertyMetadata(null, DoubleClickCommandChanged));
private static void DoubleClickCommandChanged(DependencyObject source, DependencyPropertyChangedEventArgs args)
{
var item = source as CommandListBoxItem;
if (item == null) return;
item.RegisterCommand(args.OldValue as ICommand, args.NewValue as ICommand);
}
public ICommand DoubleClickCommand
{
get { return GetValue(DoubleClickCommandProperty) as ICommand; }
set { SetValue(DoubleClickCommandProperty, value); }
}
public static DependencyProperty DoubleClickCommandParameterProperty =
DependencyProperty.Register("DoubleClickCommandParameter",
typeof(object), typeof(CommandListBoxItem),
new PropertyMetadata(null));
public object DoubleClickCommandParameter
{
get { return GetValue(DoubleClickCommandParameterProperty); }
set { SetValue(DoubleClickCommandParameterProperty, value); }
}
#endregion
private void RegisterCommand(ICommand oldCommand, ICommand newCommand)
{
if (oldCommand != null)
oldCommand.CanExecuteChanged -= HandleCanExecuteChanged;
if (newCommand != null)
newCommand.CanExecuteChanged += HandleCanExecuteChanged;
HandleCanExecuteChanged(newCommand, EventArgs.Empty);
}
private void HandleCanExecuteChanged(object sender, EventArgs args)
{
if (DoubleClickCommand != null)
IsEnabled = DoubleClickCommand.CanExecute(DoubleClickCommandParameter);
}
}
</code></pre>
<p>Then when you create your ListBoxItems you bind to the new Command Property.</p>
<pre><code><local:CommandListBoxItem DoubleClickCommand="{Binding ItemDoubleClickedCommand}" />
</code></pre>
http://stackoverflow.com/questions/1539567/jquery-hover-over-child-elements-makes-quirky-effects/1539678#15396782Answer by bendewey for jQuery hover over child elements makes quirky effectsbendewey2009-10-08T18:38:11Z2009-10-08T18:53:52Z<p>The <code>mouseover</code> and <code>mouseout</code> events are also fired when the mouse enters and leaves any child elements. Try using the <code>mouseenter</code> and <code>mouseleave</code> events instead.</p>
<p>Unfortunately, the <a href="http://docs.jquery.com/Events/live#typefn" rel="nofollow">live</a> method doesn't currently support these methods. You'll have to bind them manually when you add/remove links.</p>
<pre><code>function toggleDelete() {
$(this)[($(this).hasClass('hover') ? 'remove' : 'add') + 'Class']('hover');
$(this).find('a.trash').toggle();
}
$('div.link').bind('mouseenter, mouseleave', toggleDelete);
$('.add').click(function(e) {
var link = $('<a />').addClass('link');
link.bind('mouseenter, mouseleave', toggleDelete);
$('.parent').append(link);
});
</code></pre>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871410#87141023Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code?bendewey2009-05-16T01:13:12Z2009-10-07T22:11:50Z<p>In my opinion the number one benefit of an IoC is the ability to centralize the configuration of your dependencies.</p>
<p>If you're currently using Dependency injection your code might look like this</p>
<pre><code>public class CustomerPresenter
{
public CustomerPresenter() : this(new CustomerView(), new CustomerService())
{}
public CustomerPresenter(ICustomerView view, ICustomerService service)
{
// init view/service fields
}
// readonly view/service fields
}
</code></pre>
<p>If you used a static IoC class, as opposed to the, IMHO the more confusing, configuration files, you could have something like this:</p>
<pre><code>public class CustomerPresenter
{
public CustomerPresenter() : this(IoC.Resolve<ICustomerView>(), IoC.Resolve<ICustomerService>())
{}
public CustomerPresenter(ICustomerView view, ICustomerService service)
{
// init view/service fields
}
// readonly view/service fields
}
</code></pre>
<p>Then, your Static IoC class would look like this, I'm using Unity here.</p>
<pre><code>public static IoC
{
private static readonly IUnityContainer _container;
static IoC()
{
InitializeIoC();
}
static void InitializeIoC()
{
_container = new UnityContainer();
_container.RegisterType<ICustomerView, CustomerView>();
_container.RegisterType<ICustomerService, CustomerService>();
// all other RegisterTypes and RegisterInstances can go here in one file.
// one place to change dependencies is good.
}
}
</code></pre>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871513#87151318Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code?bendewey2009-05-16T02:12:21Z2009-10-07T15:24:38Z<p>IoC Containers are also good for loading deeply nested class dependencies. For example if you had the following code using Depedency Injection.</p>
<pre><code>public void GetPresenter()
{
var presenter = new CustomerPresenter(new CustomerService(new CustomerRepository(new DB())));
}
class CustomerPresenter
{
private readonly ICustomerService service;
public CustomerPresenter(ICustomerService service)
{
this.service = service;
}
}
class CustomerService
{
private readonly IRespoistory<Customer> repository;
public CustomerService(IRespoistory<Customer> repository)
{
this.repository = repository;
}
}
class CustomerRepository : IRespoistory<Customer>
{
private readonly DB db;
public CustomerRepository(DB db)
{
this.db = db;
}
}
class DB { }
</code></pre>
<p>If you had all of these dependencies loaded into and IoC container you could Resolve the CustomerService and the all the child dependencies will automatically get resolved.</p>
<p>For example:</p>
<pre><code>public static IoC
{
private IUnityContainer _container;
static IoC()
{
InitializeIoC();
}
static void InitializeIoC()
{
_container = new UnityContainer();
_container.RegisterType<ICustomerService, CustomerService>();
_container.RegisterType<IRepository<Customer>, CustomerRepository>();
}
static T Resolve<T>()
{
return _container.Resolve<T>();
}
}
public void GetPresenter()
{
var presenter = IoC.Resolve<CustomerPresenter>();
// presenter is loaded and all of its nested child dependencies
// are automatically injected
// -
// Also, note that only the Interfaces need to be registered
// the concrete types like DB and CustomerPresenter will automatically
// resolve.
}
</code></pre>
http://stackoverflow.com/questions/1528368/how-can-i-query-the-best-buy-remix-api-w-jquery/1528409#15284091Answer by bendewey for How can I query the Best Buy Remix API w/ jQuery?bendewey2009-10-06T22:22:22Z2009-10-07T13:50:00Z<p>When disabling the cache setting for jQuery ajax it will attempt to append a timestamp to the querystring. This may be the problem your experiencing. Try calling the function with caching explicitly enabled.</p>
<pre><code>$.ajax({
type: "GET",
url: "http://api.remix.bestbuy.com/v1/products(search=" + escape(searchCriteria) + ")?apiKey=" + hhApiKey + "&format=json&callback=?",
cache: true,
success: function() {
alert('success');
},
dataType: 'json'
});
</code></pre>
http://stackoverflow.com/questions/1528324/how-to-solve-a-http-error-404-3-not-found-error/1528377#15283771Answer by bendewey for How to solve a "HTTP Error 404.3 - Not Found" error?bendewey2009-10-06T22:11:04Z2009-10-06T22:11:04Z<p>Click Start -> Run <code>cmd</code> and type:</p>
<pre><code>cd "\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation"
ServiceModelReg.exe -i
</code></pre>
http://stackoverflow.com/questions/1528329/asp-net-gridview-textbox-problem/1528357#15283571Answer by bendewey for ASP.NET GridView TextBox Problembendewey2009-10-06T22:06:54Z2009-10-06T22:06:54Z<p>When are you calling DataBind() on the Grid or Page? Often times developers will Bind the data twice and override the data recieved from Request.Form.</p>
<p>Be sure to check the Page.IsPostBack boolean.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.myGrid.DataSource = list;
this.myGrid.DataBind();
}
}
</code></pre>
http://stackoverflow.com/questions/1527978/check-xml-for-node-that-doesnt-exist-with-jquery/1528279#15282791Answer by bendewey for check xml for node that doesn't exist with jQuery?bendewey2009-10-06T21:48:40Z2009-10-06T21:48:40Z<p>Try using the <a href="http://docs.jquery.com/Selectors/attributeEquals#attributevalue" rel="nofollow">attribute equals</a> selector</p>
<pre><code>if($('time[value=1-5]').length > 0)
{
// time 1-5 exists
funcA();
}
else
{
// time 1-5 doesn't exists
funcB();
}
</code></pre>
http://stackoverflow.com/questions/1446417/pass-an-object-to-aspx-page-through-wcf-service/1446495#14464950Answer by bendewey for Pass an object to aspx page through WCF servicebendewey2009-09-18T19:45:00Z2009-09-18T19:45:00Z<p>I would use <a href="http://www.fiddlertool.com/" rel="nofollow">Fiddler</a> or the <a href="http://projects.nikhilk.net/WebDevHelper/" rel="nofollow">IE Web Developer Helper</a> to determine what results are being recieved from the server.</p>
<p>Can you update the question with the results after you've determined what's being returned to the web browser?</p>
http://stackoverflow.com/questions/292265/new-cool-features-of-c-4-04New Cool Features of C# 4.0bendewey2008-11-15T07:19:57Z2009-09-15T21:02:08Z
<p>What are the coolest new features that you guys are looking for, or that you've heard are releasing in c# 4.0.</p>
http://stackoverflow.com/questions/1360103/creating-a-loginstatuscontrol-in-silverlight0Creating a LoginStatusControl in Silverlightbendewey2009-09-01T00:58:53Z2009-09-15T14:56:38Z
<p>I'm trying to create a login status control in silverlight where I will use multiple ControlTemplates to define conditional content.</p>
<p>So far I have created a LoginStatusControl</p>
<pre><code>public class LoginStatusControl : ContentControl
{
// these are actually Depedency Properties
public ControlTemplate LoggedInTemplate { get; set; }
public ControlTemplate AnonymousTemplate { get; set; }
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
var user = this.DataContext as User;
if (user == null && this.AnonymousTemplate != null)
{
this.Template = this.AnonymousTemplate;
}
else if (this.LoggedInTemplate != null)
{
this.Template = this.LoggedInTemplate;
}
}
}
</code></pre>
<p>Then I've defined the templates in a Style. </p>
<pre><code><Style x:Key="UserStatusStyle" TargetType="local:LoginStatusControl">
<Setter Property="LoggedInTemplate">
<Setter.Value>
<ControlTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="User " />
<TextBlock Text="{Binding FirstName}" />
<TextBlock Text=" " />
<TextBlock Text="{Binding LastName}" />
<TextBlock Text=" is logged in" />
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="AnonymousTemplate">
<Setter.Value>
<ControlTemplate>
<TextBlock Text="Please create your profile" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
<p>I'm having difficulty getting the conditional templates connected to override the ControlTemplate.</p>
<p>While searching I found <a href="http://stackoverflow.com/questions/1319752/wpf-custom-control-for-side-by-side-layout">this question</a> and tried to use template binding but I couldn't get that to work. </p>
<p>Is there anyway to get this conditional templates to display if the user is logged in or not? Is there another way of solving this problem that I'm missing? I'm hoping to come up with a solution that can update the template dynamically when the DataContext of the control changes.</p>
http://stackoverflow.com/questions/1360103/creating-a-loginstatuscontrol-in-silverlight/1427705#14277050Answer by bendewey for Creating a LoginStatusControl in Silverlightbendewey2009-09-15T14:56:38Z2009-09-15T14:56:38Z<p>Well, I ended up going with a <code>ContentContent's Content</code> property and providing conditional DataTemplates.</p>
<p>Here is the Control:</p>
<pre><code>public class LoginStatusControl : ContentControl
{
public DataTemplate LoggedInTemplate
{
get { return (DataTemplate)GetValue(LoggedInTemplateProperty); }
set { SetValue(LoggedInTemplateProperty, value); }
}
// Using a DependencyProperty as the backing store for LoggedInTemplate. This enables animation, styling, binding, etc...
public static readonly DependencyProperty LoggedInTemplateProperty =
DependencyProperty.Register("LoggedInTemplate", typeof(DataTemplate), typeof(LoginStatusControl), new PropertyMetadata(null));
public DataTemplate AnonymousTemplate
{
get { return (DataTemplate)GetValue(AnonymousTemplateProperty); }
set { SetValue(AnonymousTemplateProperty, value); }
}
// Using a DependencyProperty as the backing store for AnonymousTemplate. This enables animation, styling, binding, etc...
public static readonly DependencyProperty AnonymousTemplateProperty =
DependencyProperty.Register("AnonymousTemplate", typeof(DataTemplate), typeof(LoginStatusControl), new PropertyMetadata(null));
public LoginStatusControl()
{
DefaultStyleKey = typeof(LoginStatusControl);
}
public override void OnApplyTemplate()
{
UpdateTemplate();
base.OnApplyTemplate();
}
private void UpdateTemplate()
{
var content = (ContentControl)base.GetTemplateChild("LoginControl");
if (content == null)
return;
var user= this.DataContext as User;
if (user == null && this.AnonymousTemplate != null)
{
content.Content = this.DataContext;
content.ContentTemplate = this.AnonymousTemplate;
}
else if (this.LoggedInTemplate != null)
{
content.Content = this.DataContext;
content.ContentTemplate = this.LoggedInTemplate;
}
}
}
</code></pre>
<p>And here is the Default Style.</p>
<pre><code> <Style x:Key="LoginStatusStyle" TargetType="controls:LoginStatusControl">
<Setter Property="LoggedInTemplate">
<Setter.Value>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="User: "/>
<TextBlock Text="{Binding FirstName}" FontWeight="Bold" />
<TextBlock Text=" " />
<TextBlock Text="{Binding LastName}" FontWeight="Bold" />
<TextBlock Text=" is logged in" />
</StackPanel>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="AnonymousTemplate">
<Setter.Value>
<DataTemplate>
<TextBlock Text="Please create your profile" />
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<ContentControl x:Name="LoginControl" Margin="10,0" VerticalAlignment="Center" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
http://stackoverflow.com/questions/1331448/is-it-better-to-yield-return-lookup-lists-or-preload-a-static-list-in-c1Is it better to yield return lookup lists or preload a static list in c#?bendewey2009-08-25T22:49:51Z2009-08-26T00:46:39Z
<p>I have a simple lookup list that I will use to populate a dropdown in Silverlight. In this example I'm using US States.</p>
<p>I'm trying to figure out if its better to return a static list or use the <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx" rel="nofollow">yield</a> keyword. Of the following two pieces of code, which is the preferred and why?</p>
<p><strong>Version 1:</strong> Using yield return</p>
<pre><code>public class States
{
public static IEnumerable<string> GetNames()
{
yield return "Alabama";
yield return "Alaska";
yield return "Arizona";
yield return "Arkansas";
yield return "California";
yield return "Others ...";
}
}
</code></pre>
<p><strong>Version 2:</strong> Return the list</p>
<pre><code>public class States
{
private static readonly IList<string> _names;
static States()
{
_names = new List<string>() {"Alabama",
"Alaska",
"Arizona",
"Arkansas",
"California",
"Others ..." };
}
public static IList<string> GetNames()
{
return _names;
}
}
</code></pre>
http://stackoverflow.com/questions/1082283/restructuring-html-using-jquery/1082330#10823303Answer by bendewey for Restructuring HTML using jQuerybendewey2009-07-04T14:46:27Z2009-07-04T14:46:27Z<p>Give this a try:</p>
<pre><code> $(document).ready(function(){
$('#restructure').toggle(
function() {
alert('removing structure');
$("#modules .column_left, #modules .column_right").moveToGrandparent();
$(".two_column_box").remove();
},
function() {
alert('replacing structure');
var next = $('#modules > .column_left:first, #modules > .column_right:first');
while (next.length > 0)
{
var wrapper = $("<div />").addClass("two_column_box");
next.wrapAll(wrapper);
next = $('#modules > .column_left:first, #modules > .column_right:first');
}
}
);
});
(function($) {
$.fn.moveToGrandparent = function() {
return $(this).each(function() {
$(this).parent().parent().append($(this));
});
};
})(jQuery);
</code></pre>
<p>Although you're removing structure code worked, I re-wrote it to use a plugin. As for the replacing structure, I'm using the jQuery <a href="http://docs.jquery.com/Manipulation/wrapAll" rel="nofollow"><code>wrapAll</code></a> method with a loop that gets the first elements until there aren't any elements remaining.</p>
<p>HTH,
Ben</p>
http://stackoverflow.com/questions/1082224/how-do-you-test-that-a-ienumerablesomeclass-has-all-items-of-class-someclass-in/1082245#10822450Answer by bendewey for How do you Test that a IEnumerable<SomeClass> has all items of class SomeClass in MBunit?bendewey2009-07-04T13:49:06Z2009-07-04T14:09:24Z<p>I didn't see anything in the MBUnit <a href="http://mbunit.tigris.org/source/browse/mbunit/src/MbUnit.Core/Framework/CollectionAssert.cs?view=markup&content-type=text%2Fvnd.viewcvs-markup" rel="nofollow"><code>CollectionAssert</code></a> Class that could help you here</p>
<p>You can easily write your own though (untested).</p>
<pre><code>public class MyCollectionAssert
{
public void CollectionAssert(IEnumerable source, Predicate<object> assertion)
{
foreach(var item in source)
{
Assert.IsTrue(assertion(item));
}
}
public void AllAreInstancesOfType(IEnumerable source, Type type)
{
return CollectionAssert(source, o => o.GetType() == type);
}
}
</code></pre>
<p>I assuming you actually mean IEnumerable and not <code>IEnumerable<SomeClass></code> which the compiler enforces the type safety of. To use this extension method call:</p>
<pre><code>MyCollectionAssert.AllAreInstancesOfType(myList, typeof(SomeClass));
</code></pre>
http://stackoverflow.com/questions/1082243/printing-all-spreadsheet-names-only-in-a-workbook/1082264#10822642Answer by bendewey for Printing all spreadsheet names only in a workbook.bendewey2009-07-04T14:03:30Z2009-07-04T14:03:30Z<p>Assuming you using VBA and not .NET you could write a sub routine similar to this. The same objects and names are available in .NET.</p>
<pre><code>Sub ShowTabNames()
Dim s As Worksheet
Dim tabs As String
For Each s In ActiveWorkbook.Worksheets
If Len(tabs) > 0 Then tabs = tabs & ", "
tabs = tabs & s.Name
Next
MsgBox tabs
End Sub
</code></pre>
http://stackoverflow.com/questions/1040884/update-sql-table-with-bigint-field-from-vba-ms-access/1040945#10409450Answer by bendewey for Update SQL table with bigint field from VBA (MS Access)bendewey2009-06-24T20:55:51Z2009-06-24T20:55:51Z<p><strong>Data mismatch in criteria expression</strong> usually means that you SQL Syntax is wrong. Try copying the resulting SQL into a new Query in MS Access and running directly from Access.</p>
<p>What is myVar in your example? What is the resulting SQL?</p>
http://stackoverflow.com/questions/528372/overloaded-use-of-yield-return5Overloaded use of yield returnbendewey2009-02-09T14:36:59Z2009-06-18T13:54:59Z
<p>I don't have much experience with using the yield keyword. I have these IEnumerable<T> extensions for Type Conversion.</p>
<p>My question is does the first overloaded method have the same yield return effect that I'm getting from the second method?</p>
<pre><code>public static IEnumerable<TTo> ConvertFrom<TTo, TFrom>(this IEnumerable<TFrom> toList)
{
return ConvertFrom<TTo, TFrom>(toList, TypeDescriptor.GetConverter(typeof(TTo)));
}
public static IEnumerable<TTo> ConvertFrom<TTo, TFrom>(this IEnumerable<TFrom> toList, TypeConverter converter)
{
foreach (var t in toList)
yield return (TTo)converter.ConvertFrom(t);
}
</code></pre>
http://stackoverflow.com/questions/1006500/what-is-the-default-session-timeout-value-in-asp-net/1006622#10066227Answer by bendewey for What is the default session timeout value in ASP.NET?bendewey2009-06-17T12:13:28Z2009-06-17T12:49:10Z<p>The machine.config can override the default value for the server's Session State, among others.</p>
<blockquote>
<p>C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config</p>
</blockquote>
<p>PS. ASP.NET v3.0 and v3.5 also use the v2.0.x machine config.</p>
http://stackoverflow.com/questions/1661395/how-do-i-show-something-after-mouseover-longer-than-1-second-with-jquery-qtip/1661459#1661459Comment by bendewey on How do I show something after mouseover longer than 1 second with jQuery QTipbendewey2009-11-03T15:21:24Z2009-11-03T15:21:24Zin your sample your binding to mouseover/out, you should be able to just have my code on the top of your page.http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jqueryComment by bendewey on Loading HTML content containing inline script via jQuerybendewey2009-11-02T02:47:30Z2009-11-02T02:47:30Zby inline script to you mean <code>script</code> tags or onclick=someScript?http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jqueryComment by bendewey on Loading HTML content containing inline script via jQuerybendewey2009-11-02T02:46:52Z2009-11-02T02:46:52ZIs the page you're trying to load from on the same domain name?http://stackoverflow.com/questions/1659157/wpf-listbox-display-properties-of-the-itemsource/1659171#1659171Comment by bendewey on WPF ListBox - Display properties of the ItemSourcebendewey2009-11-02T02:43:13Z2009-11-02T02:43:13Z@Ray agreed, only use this if you're setting more complicated UI.http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583643#1583643Comment by bendewey on How to select div in table cell using jQuerybendewey2009-10-18T02:40:48Z2009-10-18T02:40:48Z@cletus you should chain the focus and blur calls so they don't load the selector twice.http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583643#1583643Comment by bendewey on How to select div in table cell using jQuerybendewey2009-10-18T02:40:02Z2009-10-18T02:40:02Z@Russ <a href="http://careers.stackoverflow.com/" rel="nofollow">careers.stackoverflow.com</a> uses an entry form that has a message on each row. I'm with cletus that he's looking for something like this.http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583634#1583634Comment by bendewey on How to select div in table cell using jQuerybendewey2009-10-18T02:37:46Z2009-10-18T02:37:46Z-1 Unfortunately this wont work if you have more than 1 row. It will show messages on all row.http://stackoverflow.com/questions/1583721/removing-css-style-for-element-by-id/1583837#1583837Comment by bendewey on removing css style for element by IDbendewey2009-10-18T02:35:10Z2009-10-18T02:35:10Z+1 I think you've covered all the scenarios here.http://stackoverflow.com/questions/1569889/jquery-move-table-row/1569895#1569895Comment by bendewey on jQuery: Move Table Row?bendewey2009-10-15T01:48:38Z2009-10-15T01:48:38Z+1 beat me to ithttp://stackoverflow.com/questions/604860/interesting-test-of-javascript-regexp/604884#604884Comment by bendewey on Interesting test of Javascript RegExpbendewey2009-10-14T17:18:05Z2009-10-14T17:18:05Z+1 thanks for the help, setting reg.lastIndex=0 before each test solved my problem.http://stackoverflow.com/questions/1447055/wpf-binding-fails-whyComment by bendewey on WPF Binding Fails. Why?bendewey2009-09-18T22:23:03Z2009-09-18T22:23:03ZCan you attach the code for your converter as well? What's wrong with setting the GroupBox to a Brush instead of the SolidColorBrush.Color property?http://stackoverflow.com/questions/1446490/setting-styles-through-code-on-html-elements-is-there-better-way/1446521#1446521Comment by bendewey on Setting styles through code on html elements. Is there better way?bendewey2009-09-18T22:13:40Z2009-09-18T22:13:40ZThe Visible attribute when using runat="server" will not render the HTML. (ie. you javascript won't find the element because it won't exist)http://stackoverflow.com/questions/1446490/setting-styles-through-code-on-html-elements-is-there-better-way/1446521#1446521Comment by bendewey on Setting styles through code on html elements. Is there better way?bendewey2009-09-18T19:54:38Z2009-09-18T19:54:38ZThis could cause a negative effect if Javascript is planning on dynamically showing the table later on, because setting the table to not Visible prevents the HTML from writing to the browserhttp://stackoverflow.com/questions/1319752/wpf-custom-control-for-side-by-side-layout/1332815#1332815Comment by bendewey on WPF Custom Control for Side by Side Layoutbendewey2009-09-01T00:39:14Z2009-09-01T00:39:14Z+1 this is exactly what I'm looking for. Do you have any links to complete samples?http://stackoverflow.com/questions/1331448/is-it-better-to-yield-return-lookup-lists-or-preload-a-static-list-in-c/1331586#1331586Comment by bendewey on Is it better to yield return lookup lists or preload a static list in c#?bendewey2009-08-26T00:15:16Z2009-08-26T00:15:16Zdo you mean <code>yield return</code> in your sample?