dzak

Stories submitted by dzak

Silverlight Center And Scale Behavior(geekswithblogs.net)

submitted by dzakdzak(210) 2 years ago

If you are interested in my last post about "How to center and scale Silverlight applications using ViewBox control", I just published behavior that you can use instead of making changes in code. How it works? 1. Download behavior (http://gallery.expression.microsoft.com/en-us/CenterAndScale ) 2. Add dll to your application <UserControl ..... xmlns:interaction="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:behavior="clr-namespace:CenterAncScaleBehavior;assembly=CenterAncScaleBehavior" .... > <interaction:Interaction.Behaviors> <behavior:CenterAncScaleBehavior /> </interaction:Interaction.Behaviors> <Grid > ... </Grid> </UserControl> 3. DONE! Your application is ready! read more...

add a comment |category: |Views: 11

tags: another

How to center and scale Silverlight applications using ViewBox control(geekswithblogs.net)

submitted by dzakdzak(210) 2 years ago

There are many ways to make your application scalable in Web Browser window and align it in the center. Usually we use two Grid controls to align and panel control (like Canvas) to scale our apps.... read more...

add a comment |category: |Views: 30

tags: another

BugCamSmash Dissected part 2 – Make the Bugs Crawl « Adam Kinney(adamkinney.wordpress.com)

submitted by dzakdzak(210) 2 years, 5 months ago

In part 1 of this series, explaining how BugCamSmash we walked through the creating the bug sprite, placing the bug at a random position on the screen and triggering a Smash animation when a rock sprite collides with the bug sprite. In this part we will cover creating the Walk animation, rotating the bug towards and walking to a point clicked with the mouse.Creating the Walk Animation Blend makes creating new Storyboards for animations very simple, in the Objects Panel click the “+” button, provide a n... read more...

add a comment |category: |Views: 1

tags: another

[Behaviors] Mouse Over ComboBox Open (Behavior)(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 7 months ago

After my last successes with TextBox Button Inovker Behavior, which was downloaded more than 700 times in 7 days and recommended by Silverlight sites like http://silverlike.net/invoke-button-click-event/, http://silverlightcream.com/, http://geekswithblogs.net/WynApseTechnicalMusings/ , I got motivation to share with you one more. This time my behavior will not be so useful and probably won’t be so famous but I hope It will be helpful for someone. What I did this time is a simple behavior for... read more...

add a comment |category: |Views: 30

tags: another

[ Visual Search Engine in Silverlight] Surfity.com new release(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 8 months ago

As I promised in my last post about Surifty.com ( http://geekswithblogs.net/SilverBlog/archive/2009/09/15/visual-search-dont-browse-surf-it.aspx ) I did some performance improvement but still you have to run it on good PC to see 100% power of visual search engine. From now on application need less than 250MB in memory (I know, It’s still a lot!). I also changed design. I hope it's now more user friendly. :) And here is a sample video showing how..... read more...

add a comment |category: |Views: 150

tags: another

[Behaviors] How to attach behavior in code behind (Silverlight 3)(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 8 months ago

For those of you who would like to add (attach) behavior to control in code behind, there is a simple solution. Adding Behaviors Let's say that we have xaml code like this one: , where "i:" is .... read more...

add a comment |category: |Views: 56

tags: another

[Behaviors] TextBox Enter Button Invoke (TargetedTriggerAction)(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 8 months ago

Few days ago I wrote a small behavior, which I think, can be used in many applications, so I decided to share it with you :) What are behaviors in Silverlight I won't write in this post, because there are many other places where you can find nice tutorial about this.... What I did is a "TargetedTriggerAction" behavior, which simulate button click on targeted button control... read more...

add a comment |category: |Views: 53

tags: another

[Visual Search] Don’t browse, surf it!(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 8 months ago

Description of new project, called "Surfity.com". What is Surfity.com? This is Visual Search implementation in Silverlight 3.0 + bing.com api. Read more about it inside or lunch Surfity.com read more...

add a comment |category: |Views: 10

tags: another

How to connect from html to Silverlight and from Silverlight to html(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 10 months ago

Simple demo with source code that show how to connect from Silverlight to code html and back. read more...

add a comment |category: |Views: 16

tags: another

Silverlight 3.0 plus Out Of Browser equal RDA(geekswithblogs.net)

submitted by dzakdzak(210) 2 years, 11 months ago

“Out Of Browser (OOB)” for Silverlight is a possibility to install RIA application on local computer and run it without web browser or even internet connection.... read more...

add a comment |category: |Views: 14

tags: another

Silverlight 3.0 + Out Of Browser = RDA?(jacekciereszko.pl)

submitted by dzakdzak(210) 3 years ago

Po ponad miesiącu zmagań i przestojów, w końcu udało mi się ukończyć opis wspaniałej funkcjonalności Silverlighta - Out Of Browser, czyli możliwość instalowania aplikacji RIA na komputerze lokalnym. W tekście znajdziecie dwa działające online dema, kod źródłowy, dużo obrazków i trochę opisów. Link http://jacekciereszko.pl/2009/05/silverlight-30-out-of-browser-rda.html Pozdrawiam, Jacek Ciereszko read more...

add a comment |category: |Views: 13

tags: another

Full Screen mode in Silverlight 2.0 applications(geekswithblogs.net)

submitted by dzakdzak(210) 3 years, 7 months ago

This article show how to add full screen mode to Silverlight 2.0 application and how to manage web browser's window resize. Post contain source code and working live demo + simple game with full screen mode. read more...

add a comment |category: |Views: 22

tags: another

Styling a ListBox with Silverlight 2 Beta 2 (Part 3) - ListBoxItem Sty(mark-dot-net.blogspot.com)

submitted by dzakdzak(210) 3 years, 9 months ago

A very good article about creating style in Silverlight 2.0. Mark used VisualStateManager and this information I was looking for. read more...

add a comment |category: |Views: 77

tags: another

Isolated Storage Memory in Silverlight 2.0(geekswithblogs.net)

submitted by dzakdzak(210) 3 years, 11 months ago

Article about Isolated Storage Memory in Silverlight 2.0. In this article, author described how to write save and read methods, he also created nice demo and showed how to manage this storage. read more...

add a comment |category: |Views: 22

tags: another

Full Screen mode in Silverlight 2.0 Beta 2 applications(geekswithblogs.net)

submitted by dzakdzak(210) 3 years, 11 months ago

This article show how to turn on/off full screen in Silverlight 2.0 Beta 2.0 and how to manage web browser's window resize. Post contain source code and working live demo. read more...

add a comment |category: |Views: 68

tags: another

Fix for ASP.NET "Could not load file or assembly App_Web..." Error(codebetter.com)

submitted by dzakdzak(210) 4 years ago

Every so often on our production web servers, we get the "Could not load file or assembly App_Web..." error. There's a long thread over at ASP.NET about this issue, but I thought a simple post may help others running into this problem. read more...

add a comment |category: |Views: 144

tags: another