Linked List In C

LINKED LIST In C   #include<stdio.h> #include<conio.h> #include”stk.c”   typedef struct nodetype { int info; struct nodetype *next; }node;   void create(node **); void insert_beg(node **,int); void insert_end(node **,int); void insert_after(node *,int,int); void delete_beg(node **); void delete_end(node **); void delete_after(node Read more

Show an Image & text in the same cell in XamDataGrid

   Show an Image & text in the same cell (One Column) in XamDataGrid :-     [code language=”csharp”] <Style TargetType=”{x:Type igWPF:CellValuePresenter}” x:Key=”FileWithIcontyle” BasedOn=”{StaticResource {x:Type igWPF:CellValuePresenter}}”> <Setter Property=”ContentTemplate” > <Setter.Value> <DataTemplate> <StackPanel Orientation=”Horizontal”> <Image VerticalAlignment=”Center” Width=”16″ Height=”16″ Margin=”5,0,0,0″ Source=”{Binding Record.DataItem.ImageSource, Read more