CSharp
Tag details
Welcome to the 'CSharp' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'CSharp'.
Look up
"CSharp"
at The Free Dictionary
Latest blogosphere posts tagged “CSharp”
-
Silverlight and RIA: Adding a ComboBox to a DataForm
MSMVPS.COM —
Authority: 654
Building a DataForm is quick and easy and is detailed in this prior post . Even customizing it is a breeze as was also shown in that prior post. But now the design calls for a ComboBox. Ready to walk off a cliff? It is surprisingly difficult to modify a DataForm to display a working ComboBox that is bound to a ...3 days ago -
Saving and transferring customisations
MSMVPS.COM —
Authority: 654
I got an email from a reader last week asking about saving customisations in Visual Studio: Hi Bill I read an excellent article by you http://visualstudiomagazine.com/Articles/2007/12/01/Customize-the-VB-IDE.aspx?Page=1 Just wondering if you know of a way to export those customisations so I can ...4 days ago -
Real World IronPython
Software Development Videos —
Authority: 434
Michael Foord discusses IronPython, the DLR, dynamic languages on .Net, static vs. dynamic typing, Visual Studio integration, Resolver One, Intellipad, Crack.net, embedding IronPython, the ScriptEngine, error handling, dynamic operations, functions as delegates, and the C# 4.0 dynamic keyword. ...5 days ago -
title
Script For All —
Authority: 131
Patch Tuesday Oracle: 38 corrective measures of scurit annoncs – Actualits – ZDNet. FrExit Windows 7 complete records id=”; talkbackform”; >; Your comment You N `ê your steps identifié to take part &worsen; the discussion, [...]5 days ago -
Silverlight: Building a Grid and StackPanel in Code
MSMVPS.COM —
Authority: 654
Many Silverlight examples show how to build controls with XAML. But XAML does not support programming logic. So sometimes you need to build the controls with real code in C# or VB. This example demonstrates how to build a Grid and StackPanel with Buttons first in XAML and then in C# and VB. It seems that there ...5 days ago -
Silverlight 4: New features overview (Part 5) – DataBinding improvements
DevCorner —
Authority: 457
Silverlight 4 introduces improvements in DataBinding. between the improvements are IDataErrorInfo support, ability to bind to DataObjects, StringFormat, TargetNullValue, FallbackValue support and many others. This post will show how to use StringFormat, TargetNullValue and FallbackValue while databinding. For ...1 week ago -
Silverlight 4 Quick Tip: Styling application
DevCorner —
Authority: 457
Silverlight 4 supports default styles. Default styles are styles with TargetType, but without x:Key property set. Those styles will be applied to all controls from corresponding type. The sample of default (also sometime called anonymous) style: Style TargetType ="Button"> Setter Property ...1 week ago -
Silverlight 4: New features overview (Part 4) – Out-of-browser applications: even more features
DevCorner —
Authority: 457
In addition to previous features, Silverlight 4 adds some more nice improvements to Out-of-Browser model. Now it allows to control Top/Left position of the out-of-browser window, bring it to the foreground (if not active), check if the window is topmost and define it’s Width/Height. All those features being ...1 week ago -
Silverlight 4: New features overview (Part 3) – Elevated Out-of-browser applications
DevCorner —
Authority: 457
Silverlight 4 enhances the out-of-browser feature introduced in previous version of the technology. Silverlight 3 added a feature to use application in Out-of-browser mode – install application shortcut to desktop or start menu, and launch it within application launcher (instead of the browser). Along with it, the ...1 week ago -
Silverlight 4: New features overview (Part 2) – Printing Support
DevCorner —
Authority: 457
In previous part (here) I’ve created sample application which uses Webcam and captures the image. In this post I’ll show how to print received image (and any part of the UI) to a printer. In Silverlight 4 we got new class, called PrintDocument which is a part of “System.Windows.Printing” namespace. ...1 week ago -
Silverlight 4: New features overview (Part 1) – Webcam/Mic Support
DevCorner —
Authority: 457
This post starts a series of post about new features in Silverlight 4 Beta released at PDC 09. Today I’ll show how to use Webcam/Mic support feature in the new version. In order to use the Webcam/Mic the user should has valid drivers installed. To see which from installed drivers could be used open Silverlight ...1 week ago -
Silverlight 4: What’s New?
DevCorner —
Authority: 457
Today Microsoft announced new version of Silverlight, and released the Beta version of Silverlight 4. Here is the summary of new features in this version: Better Out of Browser Applications Elevated Privileges Support Cross Domain Networking Access Full file path from ...1 week ago -
Do you Need My Help?
.NET Answers —
Authority: 418
I admit it, for the first time in years, I find my self under committed. That is, I have less work than I have time. So, if you need someone that provides one of the several programming and web related services below, I may be able to help you.What you may not realize is how [...] Do you Need My Help? is a post ...1 week ago -
Silverlight: No More Boxy UIs
MSMVPS.COM —
Authority: 654
As WinForms and WebForms developers, we are used to building user interfaces (UIs) that look like this: Notice the rectangular header area and the rectangular link area and the rectangular data entry area. With Silverlight it is (relatively) easy to give the UI less of a boxy look: So ...1 week ago -
ASP.NET Dynamic Validator
.NET Answers —
Authority: 418
One of the controls that was added to ASP.NET 3.5 in the SP1 release was the Dynamic Validator control.I completely missed it.What is does is pretty cool. But, it doesn’t really do what you’d think it might. Or at least not what I thought it would. “Dynamic” implies to me some kind of hook [...] ASP.NET ...1 week ago -
Silverlight: Images
MSMVPS.COM —
Authority: 654
I just needed to add a simple image to my Silverlight application to include a company logo. Three hours later … This post provides information on the image formats supported by Silverlight so that you dont run into the same issues and waste as much time as I did today. [NOTE: To anyone on the Silverlight ...2 weeks ago -
Silverlight Tip: Enumerating embedded resources
DevCorner —
Authority: 457
Today I’ve got a “Call for Help” from one of Silverlight MVPs – Bill Reiss . The mail said: “I would like to enumerate all items that were marked as Content or Resource in the main XAP file. If I can’t do both I’d settle for one. Any sample code for this would be greatly appreciated. Bill” ...2 weeks ago -
Silverlight and RIA: Enum Properties
MSMVPS.COM —
Authority: 654
I mentioned in this prior post that RIA Services did not know how to handle properties that have an Enum data type. The problem is not really that RIA Services does not know how to handle the properties; rather it does not have any knowledge of the Enum itself. Take this example. In C#: public enum ...2 weeks ago -
Silverlight and RIA: Sharing Your Business Object Files
MSMVPS.COM —
Authority: 654
So I have read in dozens of places that you can easily share a source code file between your business objects and your Silverlight project. So I thought I would try it. No go. [To begin with an overview of Silverlight, RIA, and your business objects, start here .] Supposedly, if you created a file in your ...2 weeks ago -
Silverlight and RIA: Ignoring a Property in Your Business Object
MSMVPS.COM —
Authority: 654
There may be times when you want RIA Services to ignore a property in your business object. This may be the case if you know you wont ever need to access the property from your Silverlight UI or if you cant make RIA services understand the property properly. [To begin with an overview of Silverlight, RIA, and your ...2 weeks ago
