Click here to Skip to main content
15,921,250 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
Christian Graus5-Jul-09 14:19
protectorChristian Graus5-Jul-09 14:19 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
BrowniePoints6-Jul-09 4:09
BrowniePoints6-Jul-09 4:09 
AnswerRe: I need an experienced wcf developer to tell me what wcf project they have done before PinPopular
Christian Graus5-Jul-09 14:17
protectorChristian Graus5-Jul-09 14:17 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
Tope7775-Jul-09 23:19
Tope7775-Jul-09 23:19 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
Christian Graus6-Jul-09 2:20
protectorChristian Graus6-Jul-09 2:20 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
Tope7776-Jul-09 3:39
Tope7776-Jul-09 3:39 
GeneralRe: I need an experienced wcf developer to tell me what wcf project they have done before Pin
BrowniePoints6-Jul-09 5:02
BrowniePoints6-Jul-09 5:02 
QuestionGridSplitter won't Stick!?! Pin
ProtoBytes3-Jul-09 8:37
ProtoBytes3-Jul-09 8:37 
I don't claim to be a WPF expert.

I have the following XAML:

XAML
<StackPanel Grid.Column="1" Height="Auto" Width="Auto">
    <Grid Margin="0,10,0,0">
         <Grid.RowDefinitions>
            <RowDefinition Height="540" />
            <RowDefinition/>
        </Grid.RowDefinitions>

        <TabControl TabStripPlacement="Top" Margin="0,0,0,10" Height="Auto" Width="Auto" MaxHeight="600" Grid.Row="0">
            <TabItem Name="Tab1" Header="Empty Tab">
                <src:Designer Height="Auto" MinHeight="500" x:Name="EmptyDesigner"/>
            </TabItem>
            <TabItem Name="NewTab" Header="..."/>
        </TabControl>

        <GridSplitter Width="Auto" Height="8" Focusable="True" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" Background="Azure" />

        <TabControl TabStripPlacement="Top" Margin="0,0,0,10" Height="Auto" Width="Auto" MinHeight="140" MaxHeight="600" Grid.Row="1">
            <TabItem Name="TabOut" Header="Output">
                <TextBlock Name="TBOutput" Background="Black" Foreground="Gold" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabObjectDump" Header="Object Dump">
                <TextBlock Name="TBObjectDump" Background="Black" Foreground="Blue" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabObjectTrace" Header="Object Trace">
                <TextBlock Name="TBObjectTrace" Background="Black" Foreground="Red" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabPipelineTrace" Header="Pipeline Trace">
                <TextBlock Name="TBPipelineTrace" Background="Black" Foreground="GreenYellow" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabEventTrace" Header="Event Trace">
                <TextBlock Name="TBEventTrace" Background="Black" Foreground="LightGray" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabCode" Header="Code">
                <TextBlock Name="TBCode" Background="Black" Foreground="Green" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabXAML" Header="XAML">
                <TextBlock Name="TBXAML" Background="Black" Foreground="White" Padding="2,2,2,2"></TextBlock>
            </TabItem>
            <TabItem Name="TabDSL" Header="DSL">
                <TextBlock Name="TBDSL" Background="Gray" Foreground="Black" Padding="2,2,2,2"></TextBlock>
            </TabItem>
        </TabControl>
    </Grid>
</StackPanel>


The problem is that the TabControl located in Grid.Row="1" does not automatically resize to fill the bottom of the split. WPF layouts are a little confusing comming from WinForms.

~TheArch
AnswerRe: GridSplitter won't Stick!?! Pin
User 2710093-Jul-09 10:54
User 2710093-Jul-09 10:54 
GeneralRe: GridSplitter won't Stick!?! Pin
ProtoBytes3-Jul-09 12:36
ProtoBytes3-Jul-09 12:36 
GeneralRe: GridSplitter won't Stick!?! Pin
User 2710093-Jul-09 13:47
User 2710093-Jul-09 13:47 
QuestionAbout Silverlight Start Pin
creend2-Jul-09 14:58
creend2-Jul-09 14:58 
AnswerRe: About Silverlight Start Pin
Not Active2-Jul-09 15:16
mentorNot Active2-Jul-09 15:16 
GeneralRe: About Silverlight Start Pin
creend2-Jul-09 15:51
creend2-Jul-09 15:51 
GeneralRe: About Silverlight Start Pin
Pete O'Hanlon2-Jul-09 21:40
mvePete O'Hanlon2-Jul-09 21:40 
AnswerRe: About Silverlight Start Pin
Mark Salsbery3-Jul-09 6:46
Mark Salsbery3-Jul-09 6:46 
QuestionWPF custom Control delete event name [modified] Pin
Vinod C S2-Jul-09 5:03
Vinod C S2-Jul-09 5:03 
AnswerRe: WPF custom Control delete event name Pin
User 2710093-Jul-09 13:49
User 2710093-Jul-09 13:49 
GeneralRe: WPF custom Control delete event name Pin
Vinod C S5-Jul-09 23:12
Vinod C S5-Jul-09 23:12 
GeneralRe: WPF custom Control delete event name Pin
User 2710096-Jul-09 1:43
User 2710096-Jul-09 1:43 
QuestionRe: WPF custom Control delete event name Pin
User 2710096-Jul-09 3:50
User 2710096-Jul-09 3:50 
AnswerRe: WPF custom Control delete event name Pin
Vinod C S6-Jul-09 4:23
Vinod C S6-Jul-09 4:23 
GeneralRe: WPF custom Control delete event name Pin
User 2710096-Jul-09 4:29
User 2710096-Jul-09 4:29 
GeneralRe: WPF custom Control delete event name Pin
User 2710096-Jul-09 9:24
User 2710096-Jul-09 9:24 
GeneralRe: WPF custom Control delete event name Pin
User 2710097-Jul-09 21:47
User 2710097-Jul-09 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.