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;








0















enter image description here



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.










share|improve this question






























    0















    enter image description here



    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.










    share|improve this question


























      0












      0








      0








      enter image description here



      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.










      share|improve this question
















      enter image description here



      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 26 at 15:17









                Andy CowanAndy Cowan

                669 bronze badges




                669 bronze badges


















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript