Having a Custom ScrollBar for Controls possible in .NET ?

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default Having a Custom ScrollBar for Controls possible in .NET ?

    Hi
    I want to customize the look & feel of scroll bar which appears for controls like Textbox, ListBox, ComboBox etc. Is there any way to achive this in .NET
    I could not see any direct ways to replace the default scrollbar with my own
    Thank
    Prashanth
    Prashanth Uppunda Guest

  2. Similar Questions and Discussions

    1. Why the properties of web user controls which inherted from my custom base UI controls MISSED?
      Why the properties of web user controls which inherted from my custom base UI controls MISSED? How should I to set enable?
    2. Regpoint in Custom Scrollbar
      I want to change the regpoint of a picture, which I use as a dragger in a custom scrollbar. I tried to change it from the paint window, and the...
    3. Custom Scrollbar
      Having problem with this. Creating up/down buttons, bar and grabber and placing them on the stage in relation to mkoving text in a text menu. However...
    4. Custom Scrollbar Behavior
      I created all the necessary components required by Custom Scrollbar behaviour in Director 8.5. Everything works fine, however, everytime I save or...
    5. Creating a custom scrollbar? I got nothing.
      Hello everybody, I did a little research on this forum and took a peek at the director-online.com tutorial and still have been unable to find an...
  3. #2

    Default Re: Having a Custom ScrollBar for Controls possible in .NET ?

    You can do this with CSS. Either include it in your page that uses these
    controls or build a custom control deriving from these controls and
    attaching/specifying CSS if you are looking to reuse them.

    Jiho

    "Prashanth Uppunda" <Prashanth.Uppunda@sisl.co.in> wrote in message
    news:2C70218A-9005-45EB-925C-74B82191633B@microsoft.com...
    > Hi,
    > I want to customize the look & feel of scroll bar which appears for
    controls like Textbox, ListBox, ComboBox etc. Is there any way to achive
    this in .NET ?
    > I could not see any direct ways to replace the default scrollbar with my
    own.
    > Thanks
    > Prashanth

    Jiho Han Guest

  4. #3

    Default Re: Having a Custom ScrollBar for Controls possible in .NET ?

    Hi Jiho
    Thanks for the response
    But I dont have any idea what is CSS. Can you please tell me more on CSS and how to use it
    Thank
    Prashanth
    Prashanth Uppunda Guest

  5. #4

    Default Re: Having a Custom ScrollBar for Controls possible in .NET ?

    CSS is Cascading Style Sheets. I am going to assume that you know what HTML
    is for the moment. CSS is how you specify "styles" for your page, things
    like font, text color, background color, and includes properties that
    control scrollbar's look and feel. CSS is a crucial knowledge if you are
    developing on the web and even more so if you are developing controls for
    reuse.

    I'd start here: [url]http://www.w3schools.com/css/default.asp[/url]

    You can also go to the source: [url]http://www.w3.org/Style/CSS/[/url]

    There are some great books on the topic as well. I recommend Cascading
    Style Sheets: The Definitive Guide by Eric Meyer (O'Reilly) -
    [url]http://www.amazon.com/exec/obidos/tg/detail/-/0596005253/ref=lpr_g_1/002-8331039-1980838?v=glance&s=books[/url]

    Good Luck Prashanth.

    "Prashanth Uppunda" <anonymous@discussions.microsoft.com> wrote in message
    news:F9D8E2AD-2915-4445-AC29-D61256F50508@microsoft.com...
    > Hi Jiho,
    > Thanks for the response.
    > But I dont have any idea what is CSS. Can you please tell me more on CSS
    and how to use it?
    > Thanks
    > Prashanth

    Jiho Han Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139