Sign in
You had me at "Hello World!"
XAML, WPF, Silverlight, .NET, Office 2007, Windows code samples and other interesting things
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Controls
Deep Zoom
Effects
Excel 2007
freezables
Games
guidelines
Help
hire
Image
job
Motion Capture
Optimizations
Sample
Silverlight
Source Code
Star field
Tutorial
Video
Visual Studio
WCF
Web Service
work
WPF
XAML
Archive
Archives
September 2009
(1)
August 2009
(4)
July 2009
(2)
May 2009
(2)
March 2009
(1)
February 2009
(4)
October 2008
(2)
September 2008
(1)
August 2008
(1)
July 2008
(5)
June 2008
(5)
May 2008
(6)
April 2008
(5)
March 2008
(6)
February 2008
(1)
January 2008
(1)
November 2007
(1)
June 2007
(1)
February 2007
(3)
August 2006
(1)
June 2006
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
You had me at "Hello World!"
Blobbying #1 - Introducing Blob the Builder
Posted
over 7 years ago
by
nikola
64
Comments
Do you remember long time ago when you (or someone else) used to play with small and cute snails, dirt, and sticky, slimy things? The blobs are here again! Remember your most precious childhood memories (where applicable) with this short blobbyfying...
You had me at "Hello World!"
Visual Studio 2008 Walkthrough: Creating, Hosting and Using WCF Services with Silverlight 2
Posted
over 5 years ago
by
nikola
17
Comments
Before we Start The final project is a sample that sends a string to WCF web service from Silverlight and gets a response back. Sample source code: http://blogs.msdn.com/nikola/attachment/8168735.ashx ( Edit: see comments on how to change the source...
You had me at "Hello World!"
3 Easy Steps to WPF Pixel Shaders. Template Project and Five Shader Samples (Twirl UI, Light, Blobs, Grayscale and Wave reflection)
Posted
over 5 years ago
by
nikola
15
Comments
In This Tutorial: · Template project and simple 3-step instructions to kick start WPF pixel shaders · Introduction to Pixel Shaders in WPF · Source Code for 3 pixel shaders · Links to 2 pixel shader sources on the web Using Shaders in WPF...
You had me at "Hello World!"
Anatomy of a Silverlight Game: Avoid Common Mistakes When Building Online Games
Posted
over 4 years ago
by
nikola
15
Comments
Last week I created a document that incorporates my experiences developing the Shock Silverlight online game so far. The document discusses the basics of online games in Silverlight and has a lot of practical examples (code) and a working project that...
You had me at "Hello World!"
Human Movements - The Easiest Motion Capture File Format
Posted
over 4 years ago
by
nikola
13
Comments
This is the second post of the "Reallistic Human Movements with Silverlight" series. I'll spend a little time talking about the .bvh file format structure. I’m still working on the code and that’s why I’ll make this post short in order to get back to...
You had me at "Hello World!"
Silverlight 3 Speed Optimizations - The Ultimate Game Loop!
Posted
over 4 years ago
by
nikola
13
Comments
Edit: this post is now replaced by the more in-depth view here: http://blogs.msdn.com/nikola/archive/2009/08/19/exposed-5-methods-to-create-game-loop-which-is-the-best.aspx Nice! I just ported my Shock game to Silverlight 3. Getting the graphics...
You had me at "Hello World!"
Silverlight: Super-fast Dymanic Image Generation Code (Revisited)
Posted
over 4 years ago
by
nikola
11
Comments
I decided to give a third spin of Joe Stegman's dynamic image generation code. This time, it's many times faster (about 10x) than the original implementation and the png is generated in-place (no recoding necessary). I used some hacky optimizations...
You had me at "Hello World!"
Large Star Field - Take 2, how to make it look "deep" and more reallistic
Posted
over 4 years ago
by
nikola
11
Comments
Check out the new starfield and compare it with the old one. Edit: thanks to fashai for pointing out an issue, I updated the code again - now the stars no longer form straight lines if the Silverlight control was invisible for some time. Also updated...
You had me at "Hello World!"
Exposed: 5 methods to create game loop: which is the best?
Posted
over 4 years ago
by
nikola
8
Comments
Edit: fixed broken links What is the best method to create a game loop? I created a small experiment comparing 5 different animation methods. The results, along with code samples and test screenshots are summarized in this document: 5 Game...
You had me at "Hello World!"
Reallistic Human Movements in Silverlight - My Own Motion Capture Viewer!
Posted
over 4 years ago
by
nikola
6
Comments
Hoho! yes! How to make reallistic human movements in Silverlight? Check out this stickman animation demo here: http://www.nokola.com/mocap.html Download source code for the above sample in the attachments to this post below. You're looking at...
You had me at "Hello World!"
Image Effects with Silverlight: Creating the Saturation Light Sample
Posted
over 5 years ago
by
nikola
6
Comments
This sample demonstrates the following: 1. Simulating any image effect with Silverlight 2. Using the mouse wheel in a Silverlight application Download sample source code: http://www.nokola.com/sources/SaturationLight.zip The main XAML...
You had me at "Hello World!"
Large Star Field in Silverlight - Taste of Game, Part 2
Posted
over 4 years ago
by
nikola
5
Comments
Edit2: After posting this, I made a significant improvement on the star field... will post it tonight. In the new version there's more sense of depth not just "dots" like the one below. The star speed and brightness now is calculated better (based on...
You had me at "Hello World!"
A Taste of What's To Come - My New Game Concept Art
Posted
over 4 years ago
by
nikola
4
Comments
Here...a quick bite from the new game coming out... Silverlight 3, full screen, Got an idea for a name?
You had me at "Hello World!"
Silverlight Game Competition - $5000 prize
Posted
over 4 years ago
by
nikola
4
Comments
Submission deadline is April 30, 2009 Check it out: http://www.serverquestcontest.com/ Too bad I can't participate (I'm not eligible because I'm Microsoft employee) Whoever reads this, please do your best! Thank you! :) I'll still be...
You had me at "Hello World!"
Cool Silverlight Splash Screen Concept Demo (including Source Code)
Posted
over 5 years ago
by
nikola
4
Comments
In this tutorial: Creating a cool (and easy) Vista-like "ray of light" effect in Silverlight Creating images for splash screens The demo below shows a "core" that emits rays of light as a hypothetical download progresses. Download source...
You had me at "Hello World!"
Calling Web Services and Accessing UI from Timer Event in Silverlight
Posted
over 5 years ago
by
nikola
4
Comments
If you try accessing UI from a timer event, you'll Exception: Invalid cross-thread access . This happens because the timer code is running on different thread and trying to access controls on the main thread. Here's how to fix it: Edit: thanks to jackbond...
You had me at "Hello World!"
XAML Load support in Cider May CTP Release. Sample app.
Posted
over 7 years ago
by
nikola
4
Comments
You would be glad to know that some of the improvements in May CTP include: - Support for x:Static - Traversing properties, for e xample: TargetProperty = " (Control.Background).(LinearGradientBrush.GradientStops)[1].(Offset) " - Improved...
You had me at "Hello World!"
Configuring IIS 7 to work with WCF Web Services for Silverlight 2
Posted
over 5 years ago
by
nikola
4
Comments
I've tried these, and there are some interesting parts that can take some time figuring out by digging in docs. This post will probably solve the 404.3 error (svc not registered as MIME type) So here's the whole solution for getting a WCF service...
You had me at "Hello World!"
Retrieving Information From Excel 2007 Files
Posted
over 6 years ago
by
nikola
4
Comments
Ever needed a sample code to programmatically extract data from Excel 2007 table? Given an excel table like this (in book1.xlsx): Name ID Color Ball 1 White Phone 2 Green ...
You had me at "Hello World!"
Building the Reallistic Water Ripples Sample in Silverlight
Posted
over 5 years ago
by
nikola
4
Comments
In this tutorial: - creating and rendering water ripples - optimized image generation - JPEG decoding component for Silverlight Source code for this sample Algorithm The algorithm is based on Hugo Elias’ 2D water tutorial . On...
You had me at "Hello World!"
Play this Silverlight Game Online: Shock v2
Posted
over 4 years ago
by
nikola
3
Comments
I'm very proud to announce version 2 or my online Silverlight game "Shock": Play it here: http://www.nokola.com/shock Edit: I appreciate if you leave your comments and suggestions in the comment field for the game. Also, if you like it, please...
You had me at "Hello World!"
Nice background image
Posted
over 4 years ago
by
nikola
3
Comments
My latest creation last night... space view of a planet on a starry background The image is 1920x1440 Hope you like it :) Feel free to use it as your desktop background, if you like :)
You had me at "Hello World!"
Windows 7 Look-alike Taskbar Button Control in Silverlight
Posted
over 4 years ago
by
nikola
2
Comments
Last night, inspired by the cool taskbar in Windows 7, I decided to see how easy it will be to make a similar control in Silverlight. Here's the screenshot of the first stab on the Win7 taskbar in Silverlight: Click here: http://www.nokola.com...
You had me at "Hello World!"
Ray Tracing in Silverlight
Posted
over 5 years ago
by
nikola
2
Comments
I had some free time today and did this: I'd like to note that LukeH made the core raytracing engine in C#. He built it using linq and the code looks very elegant . I did the "Silverlight" part of it. There are some things to think about with ray...
You had me at "Hello World!"
Converting RTF on the Clipboard To XAML
Posted
over 6 years ago
by
nikola
2
Comments
Here is a simple function that will convert RTF data on the clipboard to XAML: /// <summary> /// Returns the text contents of the clipboard as XAML /// </summary> /// <returns></returns> public static string GetFormattedXamlFromClipboard...
Page 1 of 3 (54 items)
1
2
3