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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
T

thangavel1987

@thangavel1987
About
Posts
9
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • User Control drag and drop
    T thangavel1987

    This is in user control <ListView name="pieChart" > <ListViewItem Style="{StaticResource listviewItemRes}" PreviewMouseLeftButtonDown="ListViewItem_PreviewMouseLeftButtonDown" /> <ListView /> this is in window <Window x:Class="Music_Diary.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" AllowDrop="True" Drop="Window_Drop" WindowStyle="None" Top="0" Left="0" > private void ListViewItem_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { DragDrop.DoDragDrop(this.pieChart, sender , DragDropEffects.Copy); } private void Window_Drop(object sender, DragEventArgs e) { //here what i am going to write to remove the listview item from the listview }

    modified on Thursday, March 26, 2009 3:48 AM

    WPF help question

  • User Control drag and drop
    T thangavel1987

    i create a new user control and that is included in my window. and i try to drag an element from the user control and drop it in the window. in the user control i have listview . i drag the listview items from the listview and drop in the window. how i can get the listview control and that particular listview item??? I have to remove the listview item from the listview. any one pls help me......

    WPF help question

  • Data Binding
    T thangavel1987

    ya but no error. when i am inserting through an button click it will get inserted . for changing colors only its not working

    WCF and WF wpf wcf help

  • Data Binding
    T thangavel1987

    There is binding problem <ListView AllowDrop="True" Loaded="PieChartView_Loaded" Drop="PieChartView_Drop" Name="pieChart" Background="Transparent"> <ListView.View> <GridView ColumnHeaderContainerStyle="{DynamicResource myHeaderStyle}" > <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <ListViewItem Style="{StaticResource listviewItemRes}" PreviewMouseLeftButtonDown="ListViewItem_PreviewMouseLeftButtonDown" /> </DataTemplate> </GridViewColumn.CellTemplate> </GridViewColumn> </GridView> </ListView.View> </ListView> and in the style i draw an ellipse <Ellipse Fill="{Binding CategoryColor, UpdateSourceTrigger=PropertyChanged}" > and then one button click i change the color but it is not changing.

    WCF and WF wpf wcf help

  • Tree View design
    T thangavel1987

    ya correct but i set the color from the database using binding . so after they select i try to change the color.

    WCF and WF wpf wcf design data-structures

  • Tree View design
    T thangavel1987

    When i am change the treeview item style as an text block like this when select this item the color changes to blue how i do that

    <treeviewitem.itemtemplate>
    <datatemplate>
    <textblock text="{Binding Code}" background="{Binding Color}" />
    </datatemplate>
    </treeviewitem.itemtemplate>

    WCF and WF wpf wcf design data-structures

  • WPF event binding
    T thangavel1987

    i am asking about binding with an function I am writing an function mouse_down in a class and i have to bind the function with this xAML code can i do this

    WPF wpf csharp wcf tutorial

  • WPF event binding
    T thangavel1987

    how to bind a event to my data context class Is this correct

    WPF wpf csharp wcf tutorial

  • WPf trreview Insertion with binding
    T thangavel1987

    I have to insert items to treeview . using data binding . i am new to WPF Pls anyone help me my code is

    WPF wpf csharp wcf help
  • Login

  • Don't have an account? Register

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