Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

bootis

@bootis
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • GridSplitter Cursor
    B bootis

    Hi, I have exactly the same problem. here is my complete code:

    <Grid Background="SteelBlue" x:Name="mainGrid">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="250"/>
            <ColumnDefinition Width="2\*" />
            <ColumnDefinition Width="250" />
        </Grid.ColumnDefinitions>
        
        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition Height="25" />
        </Grid.RowDefinitions> 
        
        <Border BorderThickness="4" BorderBrush="SteelBlue"  Background="White">
            <WFDesigner:WorkflowListView x:Name="WorkflowList" Margin="10"/>
        </Border>
        
        <WFDesigner:WorkflowDetailView x:Name="WorkflowDetail" Margin="0,4" Grid.Column="1" Background="White"/>
        
        <GridSplitter HorizontalAlignment="Right" Grid.Column="1" ResizeBehavior="CurrentAndNext" Width="4" Background="Red" />
        
        <Border BorderThickness="0,4,4,4" BorderBrush="SteelBlue"  Grid.Column="2" Background="White">
            <Grid x:Name="ToolboxProperties" DockPanel.Dock="Right">
                <Grid.RowDefinitions>
                    <RowDefinition Height="2\*" />
                    <RowDefinition Height="1\*" />
                </Grid.RowDefinitions>
                <ContentControl Content="{Binding ToolboxControl}"/>
                <ContentControl DataContext="{Binding SelectedItem}" Content="{Binding Designer.PropertyInspectorView}" Grid.Row="1"/>
            </Grid>
        </Border>
        
        <StatusBar Grid.Row="1" Grid.ColumnSpan="3" >
            <TextBlock Text="{Binding Status}" Margin="5,0" />
        </StatusBar>
    </Grid>
    

    I tried overriding it by setting "Cursor" value in the GridSplitter XAML definition but it didn't work. Any idea?

    WPF csharp wpf help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups