首页 > 其他 > 详细

Expender Header 与 Content互斥展示

时间:2014-02-19 19:59:15      阅读:387      评论:0      收藏:0      [点我收藏+]

Expender 在展开时,Header 不展示;不展开时,展示 Header

bubuko.com,布布扣

 

bubuko.com,布布扣

 

bubuko.com,布布扣
 <Expander dxlc:DockLayoutControl.Dock="Top" IsExpanded="True" ExpandDirection="Down" Name="expender"   >

            <Expander.Header>
                <dxlc:LayoutGroup Orientation="Horizontal" 
                                  Visibility="{Binding IsExpanded, 
                    RelativeSource={RelativeSource AncestorType={x:Type Expander},
                    Mode=FindAncestor},   Converter={StaticResource BoolToVisibilityConverter}}">


                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResPatientEncounterId}">
                        <TextBlock  Text="{Binding ElementName=tbEncounterId, Path=Text}"
                                    TextWrapping="Wrap" FontSize="15" FontWeight="Bold"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem  Label="{StaticResource ResourceKey=ResPatientName}">
                        <TextBlock  MinWidth="200" Text="{Binding ElementName=tbPatientName, Path=Text}"
                                    TextWrapping="Wrap" FontSize="15" FontWeight="Bold"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem >
                        <TextBlock Name="tbAgeAndGender" 
                                   TextWrapping="Wrap" FontSize="15" FontWeight="Bold"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResMRN}">
                        <TextBlock  Text="{Binding ElementName=tbMRN, Path=Text}"
                                   TextWrapping="Wrap" FontSize="15" FontWeight="Bold"></TextBlock>
                    </dxlc:LayoutItem>

                </dxlc:LayoutGroup>
            </Expander.Header>


            <dxlc:LayoutControl Orientation="Vertical" >

                <dxlc:LayoutGroup Orientation="Horizontal">


                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResPatientEncounterId}">
                        <TextBlock Name="tbEncounterId"   ></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem  Label="{StaticResource ResourceKey=ResPatientName}">
                        <TextBlock Name="tbPatientName" MinWidth="200" TextWrapping="Wrap" ></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Name="liDateOfBirth" Label="{DynamicResource ResourceKey=ResDateOfBirthG}">
                        <TextBlock Name="tbDOB" TextWrapping="Wrap" ></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResAge}" Name="liAge">
                        <TextBlock Name="tbAge"  ></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResGender}" Name="liGender">
                        <TextBlock Name="tbGender" ></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResMRN}">
                        <TextBlock Name="tbMRN" ></TextBlock>
                    </dxlc:LayoutItem>

                </dxlc:LayoutGroup>

                <dxlc:LayoutGroup Orientation="Horizontal">

                    <dxlc:LayoutItem Label="{DynamicResource ResourceKey=ResAppointmentDoctor}">
                        <TextBlock Name="tbAttending"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResAllergies}">
                        <TextBlock Name="tbAllergies"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResAdvancedDirective}">
                        <TextBlock Name="tbAdavncedDirctive"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResWt}">
                        <TextBlock Name="tbWt"></TextBlock>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem Label="{DynamicResource ResResport}">
                        <TextBlock Name="tbReport"/>
                    </dxlc:LayoutItem>

                    <dxlc:LayoutItem >
                    </dxlc:LayoutItem>
                </dxlc:LayoutGroup>

            </dxlc:LayoutControl>
        </Expander>
bubuko.com,布布扣

 

bubuko.com,布布扣
 public class BoolToVisibilityConverter : IValueConverter
    {
        #region IValueConverter Members

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if ((bool)value)
                return Visibility.Collapsed;
            return Visibility.Visible;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if ((Visibility)value == Visibility.Visible)
                return false;
            return true;
        }

        #endregion
    }
bubuko.com,布布扣

Expender Header 与 Content互斥展示

原文:http://www.cnblogs.com/quietwalk/p/3555461.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!