I'm making the application of Google Chrome. In C# I do not know how to get the tab title.
I like the tab to appear under image the title I want to.
but, my code is gets only active tabs title.(another tabs title is displaying nothing)
foreach (Process process in Process.GetProcessesByName("chrome"))
{
Console.WriteLine(process.MainWindowTitle);
}
How can get every title of chrome tabs?
Sam HobbsPosted May 29, 2011, 4:48 AM
Use Spy++ to determine a window's class name and other properties of the window.
Then see Working with Win32 API in .NET. Use EnumChildWindows to find the tabs.
Chang Hee LeePosted May 30, 2011, 10:20 AM
Mahesh ChandPosted May 30, 2011, 10:09 AM
Sam HobbsPosted May 29, 2011, 2:14 PM
Mahesh ChandPosted May 29, 2011, 10:54 AM
Mahesh ChandPosted May 29, 2011, 10:53 AM
Search this website for tab control or WPF TabControl.