Advanced Forum Search Results
-
Just the idea -- You can implement your idea by putting the ScaleTransform object with specific name into your expected object/control. With the name, you can use FrameworkElement.FindName method to get the ScaleTransform object, and then you change the properties in runtime.
-
You can learn more about Silverlight DRM powered by PlayReady from the following white paper.
http://download.microsoft.com/download/7/6/D/76D540F7-A008-427C-8AFC-BE9E0C0D8435/Using_Silverlight_with_Windows_Media_DRM-Whitepaper_FINAL.doc
With Silvelight 2 RTW, we can use only 2 types of content protection - PlayReady AES (128bit AES) and Windows ...
-
I'd like to try again this with my simple sample created by Expression Blend 2.
For Default.html, I don't put any my code, it's just as same as default document provided by Expression Blend ...
-
I think you can have 2 options:
(1) Use the Trigger for your main canvas on your page.xaml
<Canvas x:Name="your-main-canvas">
<Canvas.Triggers>
<EventTrigger RoutedEvent="Canvas.Loaded">
...
-
I've put the zip file for sharing enhanced sample as attachment at http://blogs.msdn.com/aonishi/archive/2007/11/28/how-to-add-the-zooming-feature-for-your-silverlight-page-turn-application-with-silverlight-1-0.aspx .
Hope this help.
-
I've already done to apply the zooming feature for Page turn application.
Here is my article.
http://blogs.msdn.com/aonishi/archive/2007/11/28/how-to-add-the-zooming-feature-for-your-silverlight-page-turn-application-with-silverlight-1-0.aspx
Hope this help.
-Akira
-
The Name property is readonly. So we can't change the value in runtime by scripting.
http://msdn2.microsoft.com/en-us/library/bb188424.aspx
So you can try another approach for it like following.
var item;
var rootCanvas = sender.findName("timeLinecnvsItems");
for(i=0;i < lstCnt;i++) {
var xamlFragment, ...