Gustav Brock
Gustav at cactus.dk
Sun May 31 12:44:07 CDT 2009
Hi Shamil Yes, you will need the Microsoft Silverlight 2 Software Development Kit. Here is a full list of the recommended prerequisites: http://silverlight.net/GetStarted/ Silverlight 2 runtime is available for Windows and Mac. For Linux it is the Mono Moonlight project (under development): http://www.mono-project.com/Moonlight /gustav >>> Salakhetdinov Shamil <mcp2004 at mail.ru> 31-05-2009 17:47 >>> Hi Robert, Thank you for your reply. And "transition" from WPF desktop applications or XBAP applications to SilverLight ones should be rather natural I expect (with some "preventive" measures taken to organize back-end communication). But I must say I haven't yet program any SilverLight apps. I'm looking at VS2008 SP1 Prof. now and I do not see SilverLight projects available - should I install special SilverLight SDK? Thank you. -- Shamil -----Original Message----- From: Robert Stewart <robert at webedb.com> To: dba-vb at databaseadvisors.com Date: Sun, 31 May 2009 09:46:51 -0500 Subject: Re: [dba-VB] SCRUM/WPF - Buttons Styling Exercizes > At the TechFest here locally, Houston, TX, they did say that there is active > work going on to make a version of Silverlight that will run on a Mac and > on Linux. Moonlight is the one for the Mac. I don't remember the one for > Linux. I do not think that the same can be said for the entire framework. > > At 12:00 PM 5/30/2009, you wrote: > >Date: Sat, 30 May 2009 19:48:29 +0400 > >From: Salakhetdinov Shamil <mcp2004 at mail.ru> > >Subject: Re: [dba-VB] SCRUM/WPF - Buttons Styling Exercizes > >To: "Discussion concerning Visual Basic and related programming > > issues." <dba-vb at databaseadvisors.com> > >Message-ID: <E1MAQnN-0002zR-00.mcp2004-mail-ru at f241.mail.ru> > >Content-Type: text/plain; charset=koi8-r > > > >Hi Robert, > > > >Thank you for your reply. > > > >I thought that using special manifest files one can define something > >like a sand-box environment without setting full trust priviledges > >for the source .xaml files with code behinn or inline code, the > >latter could be like that: > > > ><Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > >xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> > ><Button Click="button_Click">OK</Button> > ><x:Code><![CDATA[ > >void button_Click(object sender, RoutedEventArgs e) > >{ > >MessageBox.Show("OK"); > >} > >]]></x:Code> > ></Window>