Is it possible to bookmark the scrollbar in winforms?How do I get the path of the assembly the code is in?Cross-thread operation not valid: Control accessed from a thread other than the thread it was created onEmbedding DLLs in a compiled executableHow to save application settings in a Windows Forms Application?How do I make a textbox that only accepts numbers?How to have an auto incrementing version number (Visual Studio)?Hiding the scrollbar on an HTML pageis it possible to use Winform components in WPFc# winform cool colordialogWhy not inherit from List<T>?
Why can't supermassive black holes merge? (or can they?)
What would be the ideal melee weapon made of "Phase Metal"?
How the name "craqueuhhe" is read
(async () => )(); what is this?
How to check the quality of an audio sample?
Creating custom objects with custom properties using generics
What could be some effects of (physical) Mana consumption that prevent long term abuse?
Professor falsely accusing me of cheating in a class he does not teach, two months after end of the class. What precautions should I take?
Do native speakers use ZVE or CPU?
Robbers: The Hidden OEIS Substring
Are there any double stars that I can actually see orbit each other?
Repeating redundant information after dialogues, to avoid or not?
Is an acid a salt or not?
Why is dry soil hydrophobic? Bad gardener paradox
I have a ruthless DM and I'm considering leaving the party. What are my options to minimize the negative impact to the rest of the group?
Why isn't there research to build a standard lunar, or Martian mobility platform?
Can I play a first turn Simic Growth Chamber to have 3 mana available in the second turn?
How can I deal with a player trying to insert real-world mythology into my homebrew setting?
Why did my rum cake turn black?
Can I intentionally omit previous work experience or pretend it doesn't exist when applying for jobs?
As the Dungeon Master, how do I handle a player that insists on a specific class when I already know that choice will cause issues?
What is temperature on a quantum level
Is Arc Length always irrational between two rational points?
Was adding milk to tea started to reduce employee tea break time?
Is it possible to bookmark the scrollbar in winforms?
How do I get the path of the assembly the code is in?Cross-thread operation not valid: Control accessed from a thread other than the thread it was created onEmbedding DLLs in a compiled executableHow to save application settings in a Windows Forms Application?How do I make a textbox that only accepts numbers?How to have an auto incrementing version number (Visual Studio)?Hiding the scrollbar on an HTML pageis it possible to use Winform components in WPFc# winform cool colordialogWhy not inherit from List<T>?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to let user know about the color located at which position. I'm not sure WinForms able to achieve this but with WPF is possible.
c# winforms scrollbar
add a comment |
I want to let user know about the color located at which position. I'm not sure WinForms able to achieve this but with WPF is possible.
c# winforms scrollbar
add a comment |
I want to let user know about the color located at which position. I'm not sure WinForms able to achieve this but with WPF is possible.
c# winforms scrollbar
I want to let user know about the color located at which position. I'm not sure WinForms able to achieve this but with WPF is possible.
c# winforms scrollbar
c# winforms scrollbar
edited Mar 26 at 6:58
GuidoG
6,3953 gold badges23 silver badges49 bronze badges
6,3953 gold badges23 silver badges49 bronze badges
asked Mar 26 at 4:24
KSAKSA
55 bronze badges
55 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Out of the box, a WinForms scrollbar will not have this capability. My advise would be if you want to use WinForms and produce a similar effect, you are best building a custom control based off a scrollbar, implementing the required behaviour yourself within this custom control.
Another option would be to use a third party pre-built control, for e.g. something like this, a custom built controller with all the associated event handling and methods already built. Depending on your time, budget and ability, these are your two best options should you want to continue forward using WinForms.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349837%2fis-it-possible-to-bookmark-the-scrollbar-in-winforms%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Out of the box, a WinForms scrollbar will not have this capability. My advise would be if you want to use WinForms and produce a similar effect, you are best building a custom control based off a scrollbar, implementing the required behaviour yourself within this custom control.
Another option would be to use a third party pre-built control, for e.g. something like this, a custom built controller with all the associated event handling and methods already built. Depending on your time, budget and ability, these are your two best options should you want to continue forward using WinForms.
add a comment |
Out of the box, a WinForms scrollbar will not have this capability. My advise would be if you want to use WinForms and produce a similar effect, you are best building a custom control based off a scrollbar, implementing the required behaviour yourself within this custom control.
Another option would be to use a third party pre-built control, for e.g. something like this, a custom built controller with all the associated event handling and methods already built. Depending on your time, budget and ability, these are your two best options should you want to continue forward using WinForms.
add a comment |
Out of the box, a WinForms scrollbar will not have this capability. My advise would be if you want to use WinForms and produce a similar effect, you are best building a custom control based off a scrollbar, implementing the required behaviour yourself within this custom control.
Another option would be to use a third party pre-built control, for e.g. something like this, a custom built controller with all the associated event handling and methods already built. Depending on your time, budget and ability, these are your two best options should you want to continue forward using WinForms.
Out of the box, a WinForms scrollbar will not have this capability. My advise would be if you want to use WinForms and produce a similar effect, you are best building a custom control based off a scrollbar, implementing the required behaviour yourself within this custom control.
Another option would be to use a third party pre-built control, for e.g. something like this, a custom built controller with all the associated event handling and methods already built. Depending on your time, budget and ability, these are your two best options should you want to continue forward using WinForms.
answered Mar 26 at 15:17
Andy CowanAndy Cowan
669 bronze badges
669 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349837%2fis-it-possible-to-bookmark-the-scrollbar-in-winforms%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown