• WPF(001):Control.Dock以死,请用DockPanel.


    <DockPanel xmlns="http://schemas.microsoft.com/2003/xaml">

      
    <Border Background="LightBlue" DockPanel.Dock="Top">

        
    <Text FontSize="14" FontStyle="italic">This is Header</Text>

      
    </Border>

      
    <Border DockPanel.Dock="Bottom" Background="LightYellow">

        
    <Text FontSize="14" FontStyle="italic">This is Footer</Text>

      
    </Border>

      
    <Border DockPanel.Dock="Left" Background="#D6C8CC">

        
    <DockPanel>

          
    <Text Margin="5" DockPanel.Dock="Top" FontSize="20">Best Sites</Text>

          
    <HyperLink Margin="5" DockPanel.Dock="Top" NavigateUri="http://blog.joycode.com">

            Visit blog.joycode.com

          
    </HyperLink>

          
    <HyperLink Margin="5" DockPanel.Dock="Top" NavigateUri="http://msdn.microsoft.com">

            Visit msdn.microsoft.com

          
    </HyperLink>

        
    </DockPanel>

      
    </Border>

      
    <Border DockPanel.Dock="Fill">

        
    <DockPanel>

          
    <FlowPanel DockPanel.Dock="Top">

            
    <Button Height="20px" Width="80px" Margin="5,5,10,10">Sign In</Button>

            
    <Button Height="20px" Width="90px" Margin="5,5,10,10">Sign Out</Button>

          
    </FlowPanel> 

          
    <Border DockPanel.Dock="Fill" Background="LightGreen">

            
    <DockPanel>

              
    <Text DockPanel.Dock="Top" Margin="0,10,0,15" FontSize="15">Please read the poem below and answer questions:</Text>

              
    <TextPanel FontSize="14" Background="LightGreen" Foreground="Blue">

               Dock Sample

              
    </TextPanel>              

            
    </DockPanel>

          
    </Border>

        
    </DockPanel>

      
    </Border>

    </DockPanel>

    ----------------------------------- http://www.cnblogs.com/rock_chen/
  • 相关阅读:
    linux挂载数据盘
    Linux删除文件空间不释放问题解决
    有关智能指针(shared_ptr)的讨论
    C++函数参数传递方式(Effective C++之20, 21)
    禁用编译器自动生成的函数(Effective C++之06)
    C++编译器自动生成的函数(Effective C++之05)
    20192409潘则宇汇编语言程序设计前四章学习总结
    20192409潘则宇 实验一 逆向破解与BOF实验总结
    测试常见问题
    学习嵌入式的点滴(三)
  • 原文地址:https://www.cnblogs.com/rock_chen/p/1408257.html
Copyright © 2020-2023  润新知