Category Archives: Uncategorized

Git and SSH and Pass Phrases

Continuing with the .Net development under VMware, One useful tip if you use the git bash shell (here) for your version control on windows, and have to access remote repositories over ssh, and you want to skip entering the passphrase at … Continue reading

Posted in Uncategorized | Leave a comment

XAML Irritation

Can anyone explain the following: <Style TargetType=”{x:Type Button}” BasedOn=”{StaticResource FontStyle}”> <Setter Property=”Template”> <Setter.Value> <!– wont work without respecifying the TargetType…?–> <ControlTemplate TargetType=”{x:Type Button}”> <Border Background=”{TemplateBinding Property=Background}”> <ContentPresenter/> </Border> </ControlTemplate> </Setter.Value> </Setter> </Style> As in – why does the TargetType have … Continue reading

Posted in Uncategorized, WPF | Tagged , , | Leave a comment

WPF Databinding

Just a small observation based on a bit of reading I’ve been doing around the tradeoffs between having your view model (or it’s attached model) implement  INotifyPropertyChanged v Deriving from DependencyObject and implementing dependency properties. It’s not about the issue it’s … Continue reading

Posted in Uncategorized | Leave a comment

Plan

I’ve been thinking about what I’ll put on this blog, and I think the first thing I need is a quick reference to all the bits of dot net that I don’t use all the time. Hopefully it may be … Continue reading

Posted in Uncategorized | Leave a comment

Welcome

Hi This is the new blog for Incremental Developments Ltd. We just moved internet provider, and surprisingly mail is already working. The company never had a website in the past, principally because we never had the time to maintain it. … Continue reading

Posted in Uncategorized | Leave a comment