ラベル Mac の投稿を表示しています。 すべての投稿を表示
ラベル Mac の投稿を表示しています。 すべての投稿を表示

2007年10月17日

Developing Silverlight on Mac Cont. 3

Let's prepare other files.
The other files are Default.htm and createSilverlight.js .
These files are normal html and Javascript file.
Nothing special. But all words in these files are needed to run Silverlight.
If you don't understand Tags or Javascript, don't worry. You will understand soon.
Now, do not think too much. Just think as some Magic words here.

Default.htm
Please copy and paste from the file in SDK or from below.

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>A Sample HTML page</title>
<script type="text/javascript" src="Silverlight.js"></script>
<script type="text/javascript" src="createSilverlight.js"></script>
</head>
<body>
<!-- Where the Silverlight plug-in will go-->
<div id="mySilverlightPluginHost">
</div>
<script type="text/javascript">
// Retrieve the div element you created in the previous step.
var parentElement =
document.getElementById("mySilverlightPluginHost");
// This function creates the Silverlight plug-in.
createMySilverlightPlugin();
</script>
</body>
</html>
------------------------
You can modify Title and JavaScript name if you don't like.



createSilverlight.js
Please copy from below.

// JScript source code
//contains calls to silverlight.js, examples are below
//setting the alpha-channel in the 'background' parameter drastically affects the cost of rendering
function createSilverlight()
{
//example calls, please replace with calls that match your site's requirements
//Silverlight.createObject("xaml/piano.xaml", pe, "SlControl1",
//{width:'1024', height:'530', inplaceInstallPrompt:false, background:'white', isWindowless:'false', framerate:'24', enableFramerateCounter:'false', version:'1.0'},
//{onError:null, onLoad:null, onResize:onResize},
//null);
//Silverlight.createObjectEx({source: 'xaml/piano.xaml', parentElement:pe, id:'SlControl1', properties:{width:'1024', height:'530', background:'white', isWindowless:'false', framerate:'24', enableFramerateCounter:'false', version:'1.0'}, events:{onError:null, onLoad:null, onResize:null}, context:null});

}

function createMySilverlightPlugin()
{
Silverlight.createObject(
"mySilverlight.xaml", // Source property value.
parentElement, // DOM reference to hosting DIV tag.
"mySilverlightPlugin", // Unique plug-in ID value.
{ // Per-instance properties.
width:'500', // Width of rectangular region of
// plug-in area in pixels.
height:'500', // Height of rectangular region of
// plug-in area in pixels.
inplaceInstallPrompt:false, // Determines whether to display
// in-place install prompt if
// invalid version detected.
background:'#D6D6D6', // Background color of plug-in.
isWindowless:'false', // Determines whether to display plug-in
// in Windowless mode.
framerate:'24', // MaxFrameRate property value.
version:'1.0' // Silverlight version to use.
},
{
onError:null, // OnError property value --
// event handler function name.
onLoad:null // OnLoad property value --
// event handler function name.
},
null); // Context value -- event handler function name.
}
------------------------------
In this file, function createMySilverlightPlugin() is important part.
Please see below part;
Silverlight.createObject(
"mySilverlight.xaml",

I named mySilverlight.xaml, so I put this name. But if you named it diffrent, please replace it to your xaml file name.

After you have done from here, please save and open Default.htm by your browser or from Eclipse.
I hope you can see a circle on it.
For Next, let's add Event on Xaml.


***********

All codes above are created by Microsoft.

2007年10月16日

Developing Silverlight on Mac Cont. 2


Let's start XAML.

Open created xaml file and paste source code below.

<Canvas
    xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<Canvas x:Name="myRect"
Canvas.Left="250"
Canvas.Top="100"
>
<Ellipse x:Name="myEllipse"
Opacity="1"
Height="200"
Width="200"
Stroke="Black"
StrokeThickness="10"
Fill="SlateBlue" /
>
</Canvas>

</Canvas>


----------
xmlns is just a name space. If you want to know more, please search it by Google.

Canvas is an object which has controls and tells where the Silverlight component is.
The Silverlight must have at least one Canvas.


x:Name is not required if you do not use JavaScript.
x:Name is an identifier and this should be unique in the xaml file.

Eclipse is function(?) to draw a circle.
Canvas.Left, Top are setting position of object.
Opacity is setting transparent. 1 is not transparent and 0 is transparent.

After you paste above source code in xaml file on Eclipse, save the file and click on
gray part under file editor of Eclipse.
I hope you can see circle on the screen. (like a screen shot)

2007年10月15日

Developing Silverlight on Mac Cont.

Sorry. I said Silverlight SDK is only provided for Windows, but there is ZIP compressed file from Microsoft.
You can use these files.
Download from here;
This is CNET Download site.

Now, I hope we could create environment.
Let's create a sample.
Just in case, if you have not created environment yet, please see my previous post

1. Run Eclipse
2. Create New Project. Select General Project. (You can name any)
3. Right click on created project in Package Explorer and select properties.
4. Select JavaScript profiles and select Silverlight1.0
5. Right Click the project and select New. Then select File.
6. Name the file as Default.htm. This will be a main page.
7. Repeat Step 5, and name each file as createSilverlight.js, Silverlight.js.
8. One more set. Repeat Step 5 and create a Xaml file. You can name it any but extension must be xaml.

OK. we have done to prepare basic file structure for Silverlight.
As I said, Default.htm is main page of your Silverlight. The Silverlight is based on Web page plug-in like a Flash , so it needs HTML page to show it.
This Default.htm page defines plug-in.

Actual createing Silverlight is createSilverlight.js file. This Javascript file load and show plug-in of Silverlight on Default.htm

Silverlight.js handles events of Silverlight. The events can be defined on xaml file, but xaml file cannot do anything about action. So we need handle events on Javascript file.
This is kind of Action Script file for Flash.

Xaml file is main point of Silverlight. We create object and define event on this file using like a XML format. This is not actual XML, it is similar.

Let's create Xaml next.