|
|
Browse by Tags
All Tags » Development (RSS)
-
Looking for Bevel, Glow, Shadow, Reflection and Blur effects for Silverlight?! Not the perfect solution but you can do some Photoshop like effects on Silverlight by using pure vector graphics. You can compose, adjust parameters and.. also modify source code to your needs. Includes: BevelRectangle, InnerGlowRectangle, InnerShadowRectangle, OuterGlowRectangle, OuterShadowRectangle, ReflectionRectangle BevelEllipse, InnerGlowEllipse, InnerShadowEllipse, OuterGlowEllipse, OuterShadowEllipse, ReflectionEllipse OuterGlowTextBlock, OuterShadowTextBlock, ReflectionTextBlock BlurImage Compose Notes: Outer effects ( before ) Bevel, Inner and Reflection effects ( after ) Developed for Silverlight 2. Download Here Read More...
|
-
You can download some unreleased projects and some GotDotNet (closed) projects on my Public Folder . Includes : mentas Ribbon PhotoFilter PhotoEffects mentas Gaming WPF PieMenu Render .NET Read More...
|
-
Bea Costa has a fantastic post this morning on using XLinq in XAML to facilitate databinding. I have to say, I’m still partial to generating CLR objects from XML, especially when I have full control over the schema and data source, but it’s nice to see another elegantly designed tool that follows existing syntax conventions.
Oh, [...] Read More...
|
-
Mike Swanson ( of Illustrator-to-XAML exporter-plugin fame, my most-used AI plugin to date) just released some bits implementing seam carving in .NET. Very impressive. I’m anxious to see if and how this can be segued in with live code, especially in a multitouch scenario. Read More...
|
-
This example show how to make an iTunes like "CoverFlow" layout animation in XAML (Silverlight/WPF). Code samples don't show reflection of elements. You can make it easily with a copy of CoverFlow canvas (with some transformations and opacity). Don't make reflection of each element.. Make reflection of whole "list" to do a correct reflection. Read More...
|
-
This example show how to make an iTunes like "CoverFlow" layout animation in XAML (Silverlight/WPF). Notes: · This was written to WPF, can easily converted to Silverlight! · Underline values are width of element · You can set animation duration and perspective of elements · Perspective value and height of element are related CoverFlow Layout (C#) private void SelectCover( int index) { // Setup double coverwidth = 100 ; double coverwidth2 = coverwidth / 2; double center = (coverflowcontrol.ActualWidth - coverwidth) / 2; double perspectivetop = 25; double perspectivebotton = 10; double scaley = 0.8; double scalex = scaley * (1.0 - perspectivetop / coverwidth); double offset = coverwidth * 0.8; // Layout for ( int i = 0; i < coverflowcontrol.Children.Count; i++) { Canvas cover = ( Canvas )coverflowcontrol.Children[i]; if (i < index) { Canvas .SetZIndex(cover, i); Storyboard sb = ( Storyboard )cover.Resources[cover.Name + "_anim" ]; (( DoubleAnimation )sb.Children[0]).To Read More...
|
-
This example show how to make an iTunes like "CoverFlow" layout animation in XAML (Silverlight/WPF). Notes: · This was written to WPF, can easily convert to Silverlight! · Underline values are width of element · You can set animation duration and perspective of elements · Perspective value and height of element are related Cover Element (XAML) <!--CoverFlow Control (List)--> < Canvas Name ="coverflowcontrol"> (...) <!--CoverFlow Element--> < Canvas Name ="coverXPTO" RenderTransformOrigin ="0.5,0.5" Width =" 100 " Height ="100" Background ="Black"> < Canvas.Resources > < Storyboard x : Key ="coverXPTO_anim"> < DoubleAnimation To ="1" Duration ="0:0:0.2" Storyboard.TargetName ="coverXPTO" Storyboard.TargetProperty ="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)" /> < DoubleAnimation To ="1" Read More...
|
-
Alon from CarbonFive has posted a nice list of reference material with regard to Agile development. The team at C5 has an innate grasp of the practice, having woven it into their day-to-day internal and client-facing processes to a level of success I’ve Read More...
|
-
When I upgraded to Orcas B2, all of my .js code showed up in a lovely shade of black. For me, fixing this was as simple as doing a full “Repair” on my Visual Studio install, but I did find a note to another, more detailed method that solved Read More...
|
-
Last month my team has been working to release http://www.mediapreview.tv in August 2007, where Microsoft Silverlight 1.0 RTM will be available. The concept is to make something like a TV channel, where viewers have a rich experience such interact and custom your playlist dragging contents. Overview of Development Read More...
|
-
I’ve been digging in to Silverlight 1.1 lately, and I came across an issue where I was unable to load XML from a local (i.e. a “file:///”) URL. (I’m still unable to, by the way — trying to figure out if it’s a sandbox Read More...
|
-
Tim Sneath has a post on 15 new things in .NET 3.5, most notable (to me, at least) being some long-awaited animation fixes, XLINQ support (finally!) and support for XBAPs in Firefox.
Been kinda quiet here on the posting front as I rapidly dive into Silverlight Read More...
|
-
Making an Object Notation for C# like JSON do to "JavaScript". Sample: // Classes, Attributes Book ; Book .Title; Book .Year; Book .Price; Book .Category; Book .Author; Category ; Category .Name; Author ; Author .Name; Author .Birthday; // Data Book ( "B1" , 2005, 25.7, Category [0], Author [1]); Book ( "B2" , 2006, 49, Category [1], Author [0 1]); Book ( "B3" , 2007, 12.4, Category [0 2], Author [1]); Category ( "C1" ); Category ( "C2" ); Category ( "C3" ); Author ( "A1" , #10-12-1972# ); Author ( "A2" , #04-07-1964# ); Implementation coming... Read More...
|
-
Dwayne Need has a fantastic post (with source code) on how enable non-interactive Visual elements to run in separate threads. His summary:
In general, objects in WPF can only be accessed from the thread that created them. Sometimes this restriction is Read More...
|
-
Very simple line counter add-in for VS 2005: http://www.codeproject.com/useritems/LineCounterAddin.asp
12,000 lines of code in 4 weeks explains why I haven’t been posting lately. (OK, 4,000 of those were XAML exported from illustrator, but still… Read More...
|
|
|
|