Robert Stewart
robert at webedb.com
Sun May 31 09:46:51 CDT 2009
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>