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
K

kunthavai

@kunthavai
About
Posts
5
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Report Builder 3.0
    K kunthavai

    Hi, I want to create a report with 3 different datasets (dataset 1, 2 and 3) from a single datasource. The report layout will be a 3 section for every single record found in dataset1. Dataset 2 and dataset 3 will get the ID from dataset1 and display the 2nd and 3rd section of the report. Please help me how to create this kind of report. Thanks

    Database help tutorial

  • Xml validation in c#
    K kunthavai

    Thank you so much :)

    C# xml help csharp database

  • Xml validation in c#
    K kunthavai

    Hi, I am trying to validate a xml document against xsd in c#. I used the code

    XmlReaderSettings settings = new XmlReaderSettings();
    settings.ValidationType = ValidationType.Schema;

    And i get the following error. TesterSchemaValidator.settings' is a 'field' but is used like a 'type' Please help me, why i am getting this error.

    C# xml help csharp database

  • Resizing GridSplitter
    K kunthavai

    Got it. Thank you very much

    WPF wpf csharp css com learning

  • Resizing GridSplitter
    K kunthavai

    Hi, I am a beginner in WPF and following Sams WPF in 24 hrs. There is an exercise to do a FontViewer application using grid which displays the list of system fonts and let the user choose any font and view the corresponding font applied on a sample text. I tried using a GRIDSPLITTER which is not resizing at all. Here is the code.

    <Window x:Class="FontViewerGrid.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="500" Width="600">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="64*" />
    <RowDefinition Height="310*" />
    <RowDefinition Height="88*" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="190.667*" />
    <ColumnDefinition Width="387.333*" />
    </Grid.ColumnDefinitions>

            <Border Grid.ColumnSpan="2"
                    CornerRadius="6"
                    BorderThickness="1"
                    BorderBrush="Gray"
                    Background="LightGray"
                    Margin="6 5 6 5">
                <TextBlock Text="Select a font from the list below. You can change the text by typing in the region at the bottom."
                       FontSize="14" TextWrapping="Wrap" VerticalAlignment="Top"/>
            </Border>
            <ListBox x:Name="FontList"
                     Grid.Row="1"
                     Grid.RowSpan="2"
                     ItemsSource="{x:Static Fonts.SystemFontFamilies}" Margin="6,5,6,5"/>
        <GridSplitter Grid.Row="1" Grid.RowSpan="2" 
                      Grid.Column="1"
                      Width="2"
                      Background="Gray"
                      ResizeDirection="Columns"
                      ResizeBehavior="PreviousAndNext" Margin="0,1,0,5" HorizontalAlignment="Left" />
            <TextBox x:Name="SampleText"
                     Grid.Row="2"
                     Grid.Column="1"
                     MinLines="4"
                     Margin="6 5 6 5"
                     TextWrapping="Wrap"
                     ToolTip="Type here to change the preview text">
                The quick brown fox jumps over the lazy dog.
            </TextBox>
        <GridSplitter Grid.Row="1"
                      Grid.Column="1"
                      Widt
    
    WPF wpf csharp css com learning
  • Login

  • Don't have an account? Register

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