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 Offsite Link "CSharp" at The Free Dictionary

Latest blogosphere posts tagged “CSharp”

  • Real World IronPython


    Software Development VideosAuthority Authority: 436
    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. ...
    1 day ago
  • title


    Script For AllAuthority Authority: 129
    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, [...]
    1 day ago
  • Silverlight: Building a Grid and StackPanel in Code


    MSMVPS.COMAuthority Authority: 658
    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 ...
    1 day ago
  • Silverlight 4: New features overview (Part 5) – DataBinding improvements


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Silverlight 4 Quick Tip: Styling application


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Silverlight 4: New features overview (Part 4) – Out-of-browser applications: even more features


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Silverlight 4: New features overview (Part 3) – Elevated Out-of-browser applications


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Silverlight 4: New features overview (Part 2) – Printing Support


    DevCornerAuthority Authority: 458
    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. ...
    6 days ago
  • Silverlight 4: New features overview (Part 1) – Webcam/Mic Support


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Silverlight 4: What’s New?


    DevCornerAuthority Authority: 458
    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 ...
    6 days ago
  • Do you Need My Help?


    .NET AnswersAuthority Authority: 421
    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 ...
    6 days ago
  • Silverlight: No More Boxy UIs


    MSMVPS.COMAuthority Authority: 658
    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 AnswersAuthority Authority: 421
    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.COMAuthority Authority: 658
    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 ...
    1 week ago
  • Silverlight Tip: Enumerating embedded resources


    DevCornerAuthority Authority: 458
    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” ...
    1 week ago
  • Silverlight and RIA: Enum Properties


    MSMVPS.COMAuthority Authority: 658
    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.COMAuthority Authority: 658
    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.COMAuthority Authority: 658
    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
  • Upload a File via WebRequest Using CSharp


    .NET AnswersAuthority Authority: 421
    I got this question a couple of weeks ago but just never had the time to put into answering fully.  But today I have some extra time due to the fact that I’m “under booked” with projects.The question went something like this“I want to be able to upload a file from a desktop application [...] Upload a File ...
    2 weeks ago
  • Modifiers in Unity3D


    Everyday FlashAuthority Authority: 100
    Ringo from FlashBookmarks asked me if there were modifiers similar to AS3Dmod in Unity . I searched for something similar some time ago, but didnt find anything interesting. However, when I was starting C# scripting, I ported two of the modifiers from AS3Dmod - Bend and Twist . So I thought to share them with ...
    2 weeks ago

Comments about CSharp

Personal attacks are NOT allowed
Please read our comment policy