Click here to Skip to main content
15,886,720 members

Comments by Ashfaque Hussain (Top 6 by date)

Ashfaque Hussain 23-Jan-18 11:04am View    
Let say we have entered two search criteria First Name and Last Name. And I wrote a class for Searching by Name. In future, if I want to add one more criteria to search by date of birth. In this scenario which design pattern should use.
Ashfaque Hussain 23-Jan-18 10:39am View    
Thank you Ziee, could you please explain more?
Ashfaque Hussain 2-Jun-14 6:05am View    
Reason for my vote of 5 \n Nice explanation...
Ashfaque Hussain 2-Jun-14 5:50am View    
Reason for my vote of 1 \n there are no complete implementation
Ashfaque Hussain 8-Apr-13 5:41am View    
<datagrid headersvisibility="None" gridlinesvisibility="Horizontal" autogeneratecolumns="False" itemssource="{Binding}" height="259" horizontalalignment="Left" margin="25,20,0,0" x:name="dataGrid1" verticalalignment="Top" width="495" scrollviewer.cancontentscroll="True" scrollviewer.horizontalscrollbarvisibility="Hidden" removed="AliceBlue" canuseraddrows="False" canuserdeleterows="False" horizontalgridlinesbrush="AliceBlue">
<datagrid.columns>
<datagridtemplatecolumn width="495">
<datagridtemplatecolumn.celltemplate>
<datatemplate>
<Canvas Height="50" Name="can1" Background="AliceBlue">
<Label Canvas.Top="0" Foreground="Blue" Canvas.Left="0" FontSize="15" Content="{Binding ID}" Visibility="Hidden"/>
<Label Name="lblName" Foreground="Blue" Canvas.Top="0" Canvas.Left="0 " FontSize="15" Content="{Binding Name}" />
<Label Name="lblAccno" Canvas.Right="20" Foreground="Blue" Canvas.Top="0" FontSize="15" Content="{Binding Accno}" />
</Canvas>






i am unable to access the name of canvas and lables in other project please help