2012年3月5日

JohnSon:SilverLight详细表单信息

摘要: <!--第一行--> <Border BorderBrush="#C7DAE9" BorderThickness="1" Grid.Column="0" Grid.Row="0" Padding="0,0,5,0"> <TextBlock Text="姓名:" Style="{StaticResource TextBlockInfo}"/> </Border> <Border BorderBrush=& 阅读全文

posted @ 2012-03-05 23:14 项目管理之家 阅读(185) 评论(0) 推荐(0)

JohnSon:通过反射获取UserControl

摘要: private UserControl CreatePanel(string panelName) { if (panelName != string.Empty) { Assembly executingAssembly = Assembly.GetExecutingAssembly(); foreach (Type type in executingAssembly.GetTypes()) { if (type.Name.EndsWith(panelName)) { UserControl panel = Activator.CreateInstance(type) as UserCont 阅读全文

posted @ 2012-03-05 22:57 项目管理之家 阅读(165) 评论(0) 推荐(0)

johnson:silverlight主界面的设计

摘要: <Grid x:Name="LayoutRoot" Background="White"> <Grid Background="#FFE2F3F9"> <Grid.RowDefinitions> <RowDefinition Height="Auto" MinHeight="42.667"></RowDefinition> <RowDefinition Height="Auto" MinHeight=" 阅读全文

posted @ 2012-03-05 22:34 项目管理之家 阅读(347) 评论(0) 推荐(0)

johnson:silverlight登录界面的设计

摘要: <Grid x:Name="LayoutRoot" ScrollViewer.VerticalScrollBarVisibility="Disabled" ScrollViewer.HorizontalScrollBarVisibility="Disabled"> <Grid.Background> <ImageBrush ImageSource="Images/LogInBackGroud.png" Stretch="Fill"></ImageBrus 阅读全文

posted @ 2012-03-05 22:29 项目管理之家 阅读(1734) 评论(0) 推荐(0)

导航