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
  1. Home
  2. General Programming
  3. Java
  4. xaml

xaml

Scheduled Pinned Locked Moved Java
wpfcsharpcsswcfcom
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    MaheshSharma
    wrote on last edited by
    #1

    <Window x:Class="SearchApp.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit" Title="Window1" Height="500" Width="500"> <Grid> <Label Content="Directory : " HorizontalAlignment="Stretch" Margin="12,12,356,400" VerticalAlignment="Center" Background="Beige" FontSize="20" Loaded="Label_Loaded"/> <Label Background="Beige" Content="Search Prase :" FontSize="20" HorizontalAlignment="Stretch" Margin="12,67,324,345" VerticalAlignment="Center" /> <Label Background="Beige" Content="Recursive Flag :" FontSize="20" HorizontalAlignment="Stretch" Margin="12,122,311,290" VerticalAlignment="Center" /> <TextBox Height="23" Text="{Binding Path=DirName, ValidatesOnExceptions=True, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}" HorizontalAlignment="Left" Margin="151,29,0,0" Name="textBox1" VerticalAlignment="Top" Width="120" /> <TextBox Height="23" Text="{Binding Path=SearchCriteria, ValidatesOnExceptions=True, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}" HorizontalAlignment="Left" Margin="171,84,0,0" Name="textBox2" VerticalAlignment="Top" Width="120" /> <TextBox Height="23" HorizontalAlignment="Left" Margin="181,139,0,0" Name="textBox3" VerticalAlignment="Top" Width="120" /> <Grid Height="187" HorizontalAlignment="Left" Margin="30,0,0,54" Name="grid1" VerticalAlignment="Bottom" Width="416"> <DataGrid DockPanel.Dock="Top" AutoGenerateColumns="True" Name="DGComm" CanUserResizeColumns="True" IsReadOnly="True" ItemsSource="{Binding Source=dataGridRows}" Margin="-10,6,-15,-46"> <DataGrid.Columns> <DataGridTextColumn Header="File Name" Binding="{Binding FileName}" Width="0.1*" /> </DataGrid.Columns> </DataGrid> </Grid> </Grid;> </Window;>

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

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