Click here to Skip to main content
15,883,883 members
Home / Discussions / C#
   

C#

 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
OriginalGriff23-Sep-19 6:11
mveOriginalGriff23-Sep-19 6:11 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
BillWoodruff23-Sep-19 7:26
professionalBillWoodruff23-Sep-19 7:26 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
Luc Pattyn23-Sep-19 7:11
sitebuilderLuc Pattyn23-Sep-19 7:11 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
BillWoodruff23-Sep-19 7:18
professionalBillWoodruff23-Sep-19 7:18 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
Luc Pattyn23-Sep-19 7:26
sitebuilderLuc Pattyn23-Sep-19 7:26 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
OriginalGriff23-Sep-19 8:08
mveOriginalGriff23-Sep-19 8:08 
GeneralRe: LINQ: Remove first entry of groups in a list Pin
Luc Pattyn23-Sep-19 8:42
sitebuilderLuc Pattyn23-Sep-19 8:42 
QuestionHow to show UserControl(WPF) in a form project with not use ElementHost? Pin
Member 1308136922-Sep-19 13:59
Member 1308136922-Sep-19 13:59 
I know how to show a UserControl(WPF) by ElementHost in
a form.
like this:
C#
private ElementHost m_elementHost;
private UserControl1 m_uc;

private void button1_Click(object sender, EventArgs e)
{   
   m_elementHost.Child = m_uc;
} 



but I want to do show UserControl1 not use ElementHost, like this:
C#
private void button1_Click(object sender, EventArgs e)
{   
	UserControl1 uc = new UserControl1();

         uc.Show();

} 

AnswerRe: How to show UserControl(WPF) in a form project with not use ElementHost? Pin
Dave Kreskowiak22-Sep-19 16:55
mveDave Kreskowiak22-Sep-19 16:55 
PraiseRe: How to show UserControl(WPF) in a form project with not use ElementHost? Pin
Member 1308136925-Sep-19 13:43
Member 1308136925-Sep-19 13:43 
AnswerRe: How to show UserControl(WPF) in a form project with not use ElementHost? Pin
Gerry Schmitz24-Sep-19 7:27
mveGerry Schmitz24-Sep-19 7:27 
PraiseRe: How to show UserControl(WPF) in a form project with not use ElementHost? Pin
Member 1308136925-Sep-19 13:46
Member 1308136925-Sep-19 13:46 
QuestionCalling a dll file inside a Windows Service Pin
ArashFarmagham20-Sep-19 10:36
ArashFarmagham20-Sep-19 10:36 
AnswerRe: Calling a dll file inside a Windows Service Pin
Luc Pattyn20-Sep-19 13:02
sitebuilderLuc Pattyn20-Sep-19 13:02 
GeneralRe: Calling a dll file inside a Windows Service Pin
ArashFarmagham23-Sep-19 6:39
ArashFarmagham23-Sep-19 6:39 
GeneralRe: Calling a dll file inside a Windows Service Pin
Luc Pattyn23-Sep-19 7:07
sitebuilderLuc Pattyn23-Sep-19 7:07 
AnswerRe: Calling a dll file inside a Windows Service Pin
Dave Kreskowiak20-Sep-19 13:11
mveDave Kreskowiak20-Sep-19 13:11 
AnswerRe: Calling a dll file inside a Windows Service Pin
Shameel24-Sep-19 1:01
professionalShameel24-Sep-19 1:01 
AnswerRe: Calling a dll file inside a Windows Service Pin
Gerry Schmitz24-Sep-19 7:53
mveGerry Schmitz24-Sep-19 7:53 
QuestionDivergences with co workers about IDisposable Pin
User 1106097919-Sep-19 4:16
User 1106097919-Sep-19 4:16 
AnswerRe: Divergences with co workers about IDisposable PinPopular
Richard Deeming19-Sep-19 4:27
mveRichard Deeming19-Sep-19 4:27 
GeneralRe: Divergences with co workers about IDisposable Pin
User 1106097919-Sep-19 4:32
User 1106097919-Sep-19 4:32 
GeneralRe: Divergences with co workers about IDisposable Pin
User 1106097919-Sep-19 5:16
User 1106097919-Sep-19 5:16 
GeneralRe: Divergences with co workers about IDisposable Pin
Richard Deeming19-Sep-19 5:28
mveRichard Deeming19-Sep-19 5:28 
GeneralRe: Divergences with co workers about IDisposable Pin
User 1106097919-Sep-19 5:36
User 1106097919-Sep-19 5:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.