小编x't*_*ian的帖子

Bootstrap侧栏菜单和侧栏导航

我正在使用bootstrap,我只想创建一个响应式网站,这就是为什么要让我使用bootstrap.

我想做的就像在照片上.(注意:不是整个页面,而只是带有图标的侧边栏.)这正是我想要的侧边栏.我会在照片(侧边栏)上看到许多模板,但没有什么与我想要发生的事情完全相同.

有人能帮帮我吗?

sidebarnav

javascript css html5 twitter-bootstrap twitter-bootstrap-3

3
推荐指数
1
解决办法
2万
查看次数

可移动的WPF无边框窗口

我有一个无边框设计的WPF Mdi窗口,我希望它可以移动.我尝试了我在Google上找到的所有内容,但没有什么能适合我的情况.这是否可以在WPF无边框窗口中进行?谢谢=)

这就是我如何使我的窗口无边框.

 <pbwpf:Window x:Class="w_main" x:ClassModifier="internal" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:pbwpf="clr-namespace:Sybase.PowerBuilder.WPF.Controls;assembly=Sybase.PowerBuilder.WPF.Controls" Uid="30" WindowStyle="None" AllowsTransparency="True" Background="Transparent" MenuName="m_menu" WindowType="Mdi" xmlns:my="http://schemas.microsoft.com/winfx/2006/xaml/presentation/ribbon" VirtualizingStackPanel.VirtualizationMode="Recycling" xmlns:sys="clr-namespace:System;assembly=mscorlib" Center="True" ResizeMode="CanResize" Height="740" Width="1024" WindowState="Maximized" Resizable="True" ControlMenu="True">
    <Grid SnapsToDevicePixels="True" Height="700" Width="1009">
        <Grid.Effect>
            <DropShadowEffect Color="Black" BlurRadius="15" Direction="721" ShadowDepth="1" RenderingBias="Quality" />
        </Grid.Effect>
        <Border Background="White" />
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="50" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="90" />
                <ColumnDefinition Width="680" />
                <ColumnDefinition Width="69" />
                <ColumnDefinition Width="170" />
            </Grid.ColumnDefinitions>
            <Border Grid.Column="0" Grid.Row="0">
                <Image Source="Images/sample_bms.png" VerticalAlignment="Center" HorizontalAlignment="Center"></Image>
            </Border>
            <Border UseLayoutRounding="True" Grid.Row="0" Grid.Column="2" Background="#2cb6d9" BorderBrush="#25a6c7" BorderThickness="1,0,1,1">
                <Grid> …
Run Code Online (Sandbox Code Playgroud)

wpf powerbuilder wpftoolkit wpf-controls

1
推荐指数
1
解决办法
1772
查看次数