Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
swdev:dotnet:wpf:basic_controls [2013/01/22 15:18]
smayr [WebBrowser]
swdev:dotnet:wpf:basic_controls [2014/09/23 11:44] (current)
smayr [Expander]
Line 373: Line 373:
                       VerticalAlignment="Top" ExpandDirection="Down" Width="175">                       VerticalAlignment="Top" ExpandDirection="Down" Width="175">
                 <Grid Background="Cornsilk">                 <Grid Background="Cornsilk">
-                    <Grid.BitmapEffect+                    <Border Margin="5" BorderBrush="DarkGray" Background="White"  
-                        <DropShadowBitmapEffect /> +                            BorderThickness="1" CornerRadius="5"> 
-                    </Grid.BitmapEffect>+                        <Border.Effect> 
 +                            <DropShadowEffect BlurRadius="10" Opacity="0.5" /
 +                        </Border.Effect
 +                    </Border>
  
                     <Grid.RowDefinitions>                     <Grid.RowDefinitions>
Line 1291: Line 1294:
 </code> </code>
  
 +''TextBlock'' with truncated text showing tooltip displaying full text :
 +<code xml>
 +<TextBlock Width="100" TextTrimming="CharacterEllipsis" 
 +          ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Text}">
 +This is a long sentence with text.
 +</TextBlock>
 +</code>
 +Alternatively, use a behavior: [[http://tranxcoder.wordpress.com/2008/10/12/customizing-lookful-wpf-controls-take-2|Customizing "Lookful" WPF controls]]
 == TextBox == == TextBox ==
  
Line 1549: Line 1560:
   }   }
 }   }  
 +</code>
 +
 +Sample HTML page with JavaScript to call:
 +<code js>
 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 +<html>
 +<head>
 +    <title>This page comes from Stream</title>
 +
 +    <script type="text/javascript">
 + function getAlert()
 + {
 +     alert("Hi the page is loaded!!!");
 + }
 + window.onload = getAlert;
 +
 + function LoadDoc(message){
 +     document.write("Message : " + message);
 + }
 +    </script>
 +
 +</head>
 +<body>
 +    <input type="text" id="txtMessage" />
 +</body>
 +</html>
 </code> </code>
 == Window == == Window ==