How can you make a .net windows forms project look fresh?

前端 未结 7 1383
灰色年华
灰色年华 2021-01-31 16:33

I\'m working on a visual studio 2005 vb.net windows forms project that\'s been around for several years. It\'s full of default textboxes, labels, dropdowns, datagrids, datetime

7条回答
  •  -上瘾入骨i
    2021-01-31 16:57

    This depends on how the existing "gray old looking" project is structured in terms of code. For example, is data access code separated from the UI in a Data Access Layer, is the business logic in a Business Logic Layer? If yes, then cleaning the UI for a snazzy look should be relatively simple.

    If everything is all there in the "Button Click" event, then a rewrite is the only way in my humble opinion as otherwise it will just be too time consuming trying to work with the existing code base.

    Cheers

提交回复
热议问题