Closed oppman29 closed 3 years ago
Hello @oppman29 , thank you for posting this issue, and most of all for sharing your fixes. To now I think it could be ok even without the point 1 and 2 fixed. I you want you can send me the mods to apply, or request a pull. If you would like to go for the pull request, please fork this project and let me take a look to the mods before it.
I was able to figure out issue 1 with the grip resize by doing some the scaling before it hits ResizeBox on the constructor. the issue with the textboxes couldnt figure out.
Here are the files I changed :
MenuStrip.cs FormCustomFilter.cs
and on the progam.cs just change the HighDPIEnabled to tru
I will try do a request to Pull but if you want to check them while i figure that out... we use Gitlab at work lol
No problem for the Pull request. I'm yet importing the mods in the code. I'll try it in a few days and let you know. Really thank you for your help!
You can find the mods updated in the master branch, if is all ok for you in the next days I'll deploy a new version to nuget too.
Yes that sounds amazing.. Thanks for your work and happy to help. I will check out this weekend on how to pull
Sent from my T-Mobile 5G Device Get Outlook for Androidhttps://aka.ms/ghei36
From: Davide Gironi notifications@github.com Sent: Tuesday, March 2, 2021 1:51:55 PM To: davidegironi/advanceddatagridview advanceddatagridview@noreply.github.com Cc: oppman29 tke210@hotmail.com; Mention mention@noreply.github.com Subject: Re: [davidegironi/advanceddatagridview] Windows Scale and Layout (#55)
You can find the mods updated in the master branch, if is all ok for you in the next days I'll deploy a new version to nuget too.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/davidegironi/advanceddatagridview/issues/55#issuecomment-789132650, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AIFCPIMFJWYI7BQIRN5VL6LTBUXUXANCNFSM4YE656YA.
So, you check it out from the master branch of this repo? Did it pass your test?
I've double check it, it seems all ok to me. I'll close this.
Thank you very much for the changes I downloaded the masted branch and all looks good. Lenin
Sent from my T-Mobile 5G Device Get Outlook for Androidhttps://aka.ms/AAb9ysg
From: Davide Gironi @.> Sent: Friday, March 12, 2021 3:10:03 AM To: davidegironi/advanceddatagridview @.> Cc: oppman29 @.>; Mention @.> Subject: Re: [davidegironi/advanceddatagridview] Windows Scale and Layout (#55)
I've double check it, it seems all ok to me. I'll close this.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/davidegironi/advanceddatagridview/issues/55#issuecomment-797313574, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AIFCPIINVPE7VU7EAQOUMRDTDHD5XANCNFSM4YE656YA.
That's great! It also contains this pull request, fixed: https://github.com/davidegironi/advanceddatagridview/pull/57
Updated to nuget
Hi, thank you for this amazing advanced data grid view.
Found an issue when the user changes the monitor display settings and changes the scale and layout option
The data filter cancel and filter buttons along with the text get cutoff if they select for example 150% scale . I made some changes to ResizeBox method in MenuStrip.cs and got it to scale correctly by scaling the items. I also did some modifications for the custom filter to work ( otherwise this is also cut off)
There are two problems I can not solve , and I tried:
1* When the user uses the grip to make the box bigger, when resizebox is called again on the grip release it breaks with my scaling. For now I just disabled the grip if the scaling is not 100%.
2 * When the user selects a value like 200% in the scaling, the checkboxes are too small ( couldn't figure out how to scale those)
thanks again and let me know if you would me to share what I updated .